gpt4 book ai didi

asp.net-mvc-2 - 未找到 ObjectSet 库?

转载 作者:行者123 更新时间:2023-12-04 06:36:40 25 4
gpt4 key购买 nike

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 class 并给我类型或命名空间未找到错误。虽然在示例项目中它工作正常,但它正在使用 System.Data.Objects.ObjectSet但是我在当前项目中没有看到那个库?我正在使用 asp.net mvc 和 .net 4.0。有没有人有什么好主意?

最佳答案

确保您的项目引用了 System.Data.Entity .

您可能还需要引用 System.Runtime.SerializationSystem.Security .

当您将 EDMX 文件(ADO.NET 实体数据模型)添加到项目时,Visual Studio 会自动为您添加这些。

关于asp.net-mvc-2 - 未找到 ObjectSet 库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4787065/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com