2

当我执行代码时:

        public List<T> GetCustomerTxList(int customerId)
        {
            var matchingPocos = new List<T>();

            using (linq.AOMSEntities dataRepos = new linq.AOMSEntities())
            {        
                IEnumerable txlist = from t in dataRepos.TransactionRecord
                                 where t.CustomerReference.Value.Id == customerId
                                 select t;

                foreach (EntityObject entity in txlist)
                {
                    matchingPocos.Add(entity.ConvertToPoco<T>());
                }
            }
            return matchingPocos;
        }

我收到以下异常:Data.Repository.Integration.Test.LinqRepositoryTest.GetCustomerTxList: System.NotSupportedException:LINQ to Entities 不支持指定的类型成员“CustomerReference”。仅支持初始化程序、实体成员和实体导航属性。

CustomerReference 是引用 Customer 实体的 TransactionRecord 实体上的 EntityReference。

为什么我不能使用实体引用进行查询?

执行此类查询的推荐方法是什么?

如果有帮助,我很乐意提供更多信息/代码。

4

1 回答 1

5

您应该能够像这样在查询中直接访问客户:

from t in dataRepos.TransactionRecord 
where t.Customer.Id == customerId 
select t;

在这种情况下,EF 将在幕后为您使用 CustomerReference。

于 2010-02-25T21:22:56.290 回答