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。有没有人有什么好主意?