如何以编程方式检索实体的主键(在实体框架 4 中)?

发布于 2024-09-07 07:29:03 字数 598 浏览 2 评论 0原文

我有一个实现存储库模式的基本抽象类

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

阿楠 2024-09-14 07:29:03

实体类的关键属性用此属性标记:

[EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)]

请注意,EntityKeyProperty 设置为 true。找到类型 T 具有该属性的属性,并将其值与传递的 id 进行比较:

//Property that holds the key value
PropertyInfo p = typeof(T).
GetProperties().FirstOrDefault(
    x => x.GetCustomAttributes(typeof(EdmScalarPropertyAttribute), false)
          .OfType<EdmScalarPropertyAttribute>()
          .Where(y => y.EntityKeyProperty == true)
          .Count() > 0);

//Return first item having the passed id or null
return _entitySet.FirstOrDefault(x => (int)p.GetValue(x, null) == id);

A key property of an entity class is marked with this attribute:

[EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)]

Note that the EntityKeyProperty is set to true. Find this attribute for the property with this attribute for the type T and compare its value with the passed id:

//Property that holds the key value
PropertyInfo p = typeof(T).
GetProperties().FirstOrDefault(
    x => x.GetCustomAttributes(typeof(EdmScalarPropertyAttribute), false)
          .OfType<EdmScalarPropertyAttribute>()
          .Where(y => y.EntityKeyProperty == true)
          .Count() > 0);

//Return first item having the passed id or null
return _entitySet.FirstOrDefault(x => (int)p.GetValue(x, null) == id);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文