using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using ModelLayer.PocoModels;
using System.Data.Objects;
namespace ModelLayer
{
public class NorthwindDataContext : ObjectContext
{
private ObjectSet<Category> _categories;
private ObjectSet<Product> _products;
public NorthwindDataContext()
: base("name=NorthwindEntities",
"NorthwindEntities")
{
_categories = CreateObjectSet<Category>();
_products = CreateObjectSet<Product>();
}
}
}
在上面的代码中我得到一个错误,因为它找不到ObjectSet
类并且给我类型或名称空间未找到错误。虽然在示例项目中它工作正常但它正在使用System.Data.Objects.ObjectSet
但是我目前的项目中没有看到该库?我使用的是asp.net mvc和.net 4.0。有没有人有什么好主意?
答案 0 :(得分:3)
确保您的项目引用System.Data.Entity
。
您可能还需要引用System.Runtime.Serialization
和System.Security
。
当您将EDMX文件(ADO.NET实体数据模型)添加到项目中时,Visual Studio会自动为您添加这些文件。