2
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
類,並給了我類型或命名空間找不到error.While示例項目中正常工作是使用System.Data.Objects.ObjectSet
下,但我沒有看到圖書館我目前的項目?我使用的是asp.net mvc和.net 4.0。有沒有人有任何好主意?找不到ObjectSet庫?
明白了..這是由於某種原因使用.net 3.5 ..我的壞:( – Vishal 2011-01-24 21:04:43