使用Dapper和C#实现存储库模式

时间:2019-07-13 18:21:42

标签: c# repository-pattern dapper

我有this implemented使用实体框架。

我想使用dapper实现相同的功能。在dapper中,我没有ApplicationDbContext。

所以,如何在dapper中实现Getall,添加,更新和删除

 public void Delete(T entity)
{
    _dbContext.Set<T>().Remove(entity);
    _dbContext.SaveChanges();
}

我发现this answer对帕维尔·梅尔尼科夫(Pavel Melnikov)很有用

0 个答案:

没有答案