本文介绍了使用EF数据库第一种方法创建通用抽象类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一些类似的实体,我想为它们为 CRUD
操作创建一个通用的抽象类,但是我不知道如何访问泛型类中的实体。例如:
I have some similar entities and I want to create a generic abstract class for CRUD
operations for them, but I don't know how can access to entities in generic class. For example:
public abstract class HeaderRepository<T>
{
public HeaderRepository()
{
}
public virtual byte[] Insert(T item)
{
using (MyEntities context = new MyEntities())
{
context.***** <-- What I should write to add an object to entity T
}
}
}
我希望我明白了。
谢谢
Thanks
推荐答案
您需要设置您的数据库集。最好在类级别有一个私有变量,在构造函数中设置,然后使用它。
You need to set your DB set. It would be better to have a private variable at class level, set in the constructor and then use it.
using (MyEntities context = new MyEntities())
{
DbSet<T> dbSet = context.Set<T>();
dbSet.Add(...) //Whatever your operation is.
}
这篇关于使用EF数据库第一种方法创建通用抽象类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!