如何以编程方式检索实体的主键(在实体框架 4 中)?
我有一个实现存储库模式的基本抽象类
public abstract class Repository<T> : IRepository<T> where T : class
{
private ObjectSet<T> _entitySet;
private ObjectContext _dataContext;
public Repository(ObjectContext context)
{
_dataContext = context;
_entitySet = _dataContext.CreateObjectSet<T>();
}
public T FindByID(int id)
{
//??????
}
}
现在我需要知道主键列(相应的属性)来实现FyndByID方法。
建议主键不是复合且数据类型为int
I have this base abstract class which implements repository pattern
public abstract class Repository<T> : IRepository<T> where T : class
{
private ObjectSet<T> _entitySet;
private ObjectContext _dataContext;
public Repository(ObjectContext context)
{
_dataContext = context;
_entitySet = _dataContext.CreateObjectSet<T>();
}
public T FindByID(int id)
{
//??????
}
}
Now I need to know primary key column (corresponding property) to implement FyndByID method.
Suggest that priamry key is not composite and it's datatype is int
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实体类的关键属性用此属性标记:
请注意,
EntityKeyProperty
设置为true
。找到类型T
具有该属性的属性,并将其值与传递的id
进行比较:A key property of an entity class is marked with this attribute:
Note that the
EntityKeyProperty
is set totrue
. Find this attribute for the property with this attribute for the typeT
and compare its value with the passedid
: