我收到以下异常:
The number of members in the
conceptual type ‘MyModel.Customer’
does not match with the number of
members on the object side type
‘MyNamespace.Customer’. Make sure the
number of members are the same.
在以下代码中:
public CusomserService { // ... public IEnumerable<Customer> GetCustomers() { return new Repository<Customer>().All(); } } public class Repository<T>() where T : EntityObject { // ... public IQueryable<T> All() { return _context.CreateObjectSet<T>().AsQueryable<T>(); /* HERE THE EXCEPTION IS THROWN */ } }
泛型存储库工作正常,直到我在EF模型中进行了一些更改.我让EF创建数据库(通过从模型选项生成数据库).
我从哪里开始?
编辑:我已经解决了.
这个问题与EF或我的模型无关.我已将数据层项目(及其程序集名称)从original_name.dll重命名为new_name.dll.我已将服务层项目引用更新到数据层项目,但旧程序集(original_name.dll)仍在bin目录中.从服务层的bin目录中删除旧的程序集并重建解决方案解决了这个问题.