Interface IResourceRepository<TResource, TId>
- Namespace
- JsonApiDotNetCore.Repositories
- Assembly
- JsonApiDotNetCore.dll
Represents the foundational Resource Repository layer in the JsonApiDotNetCore architecture that provides data access to an underlying store.
[PublicAPI]
public interface IResourceRepository<TResource, in TId> : IResourceReadRepository<TResource, TId>, IResourceWriteRepository<TResource, TId> where TResource : class, IIdentifiable<in TId>
Type Parameters
TResource
The resource type.
TId
The resource identifier type.
- Inherited Members