csharp 存储库interface.cs

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 存储库interface.cs相关的知识,希望对你有一定的参考价值。

public interface IRepository<TEntity> where TEntity : EntityBase
{
    Task AddNewAsync(TEntity entity);
    Task<bool> UpdateAsync(ObjectId id, string field, string value);
    Task<TEntity> GetByIdAsync(ObjectId id);
    Task<IEnumerable<TEntity>> GetByFieldAsync(string field, string value);
    Task<long> DeleteAllAsync();
}

以上是关于csharp 存储库interface.cs的主要内容,如果未能解决你的问题,请参考以下文章

csharp 只读存储库

csharp 存储库模式

csharp 使用存储库

csharp Init git存储库

csharp 存储库模式的通用实现

csharp EF的通用存储库