gpt4 book ai didi

c# - 数据库优先与 POCO

转载 作者:太空宇宙 更新时间:2023-11-03 21:34:48 25 4
gpt4 key购买 nike

我是 Entity Framework 的新手,我正在尝试使用 POCO。大多数教程似乎都是数据库优先生成代码,或者代码优先POCOs。没有多少(尽管有一些)使用 POCO 处理数据库优先

我的设置:我正在尝试在一个有点大的现有项目中使用 EF。为了简单地回答我的问题,我尝试了以下设置。

我有一个包含单个 EDMX 模型 的项目,连接到本地数据库 上的单个表。接下来,我将 Generated CodeModel.Designer.cs 复制到另一个 .cs 文件在项目中。然后我将代码生成策略设置为。然后,我创建了一个 Context Class,如下所示。

public class LocalDB : ObjectContext
{
public const string ConnectionString = "name=LocalEntities";
public const string ContainerName = "LocalEntities";

public ObjectSet<Product_Listing> OpenList;

public LocalDB() : base(ConnectionString, ContainerName)
{
OpenList = CreateObjectSet<Product_Listing>(); //InvalidOperationException!!
}
}

问题:当我点击构造函数时,出现以下异常:

InvalidOperationException.“Mapping and metadata information could not be found for EntityType 'EFFTrial.LocalAccess.Product_Listing.”

如有任何帮助,我将不胜感激。我的书(Lerman 着)与 EF-4 有关,但我认为我在 VS 2010 和 .Net 4 上的代码支持 EF-6。正如我上面提到的,我是新手,所以我没有设置版本,只要我可以在没有 .Net 4.5 的情况下使用。

最佳答案

省去一些麻烦:

http://visualstudiogallery.msdn.microsoft.com/ee4fcff9-0c4c-4179-afd9-7a2fb90f5838

EntityFramework 反向 POCO 生成器

http://visualstudiogallery.msdn.microsoft.com/72a60b14-1581-4b9b-89f2-846072eff19d

Entity Framework Power Tools Beta 4

逆向工程代码优先 - 为现有数据库生成 POCO 类、派生的 DbContext 和代码优先映射。

===========================================

在您晚上离开之前运行它...并检查您的屏幕保护程序设置。 (也就是说,这可能需要一段时间,尤其是“电动​​工具”。

===========================================

这是 Northwind“客户”示例。或许您可以将其映射到您的表格。

namespace NorthWindyDataLayer.Models
{
[Serializable]
public partial class Customer
{
public Customer()
{

}

public string CustomerID { get; set; }
public string CompanyName { get; set; }
public string ContactName { get; set; }
public string ContactTitle { get; set; }
public string Address { get; set; }
public string City { get; set; }
public string Region { get; set; }
public string PostalCode { get; set; }
public string Country { get; set; }
public string Phone { get; set; }
public string Fax { get; set; }

}
}



using System.Data.Entity;
using System.Data.Entity.Infrastructure;
namespace NorthWindyDataLayer.Models
{
public partial class WindyContext : DbContext
{
static WindyContext()
{
//Database.SetInitializer<WindyContext>(null);
}

public WindyContext()
: base("Name=NorthwindContext")
{
}

public DbSet<Customer> Customers { get; set; }


protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Configurations.Add(new CustomerMap());
}
}
}




using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.ModelConfiguration;

namespace NorthWindyDataLayer.Models.Mapping
{
public class CustomerMap : EntityTypeConfiguration<Customer>
{
public CustomerMap()
{
// Primary Key
this.HasKey(t => t.CustomerID);

// Properties
this.Property(t => t.CustomerID)
.IsRequired()
.IsFixedLength()
.HasMaxLength(5);

this.Property(t => t.CompanyName)
.IsRequired()
.HasMaxLength(40);

this.Property(t => t.ContactName)
.HasMaxLength(30);

this.Property(t => t.ContactTitle)
.HasMaxLength(30);

this.Property(t => t.Address)
.HasMaxLength(60);

this.Property(t => t.City)
.HasMaxLength(15);

this.Property(t => t.Region)
.HasMaxLength(15);

this.Property(t => t.PostalCode)
.HasMaxLength(10);

this.Property(t => t.Country)
.HasMaxLength(15);

this.Property(t => t.Phone)
.HasMaxLength(24);

this.Property(t => t.Fax)
.HasMaxLength(24);

// Table & Column Mappings
this.ToTable("Customers");
this.Property(t => t.CustomerID).HasColumnName("CustomerID");
this.Property(t => t.CompanyName).HasColumnName("CompanyName");
this.Property(t => t.ContactName).HasColumnName("ContactName");
this.Property(t => t.ContactTitle).HasColumnName("ContactTitle");
this.Property(t => t.Address).HasColumnName("Address");
this.Property(t => t.City).HasColumnName("City");
this.Property(t => t.Region).HasColumnName("Region");
this.Property(t => t.PostalCode).HasColumnName("PostalCode");
this.Property(t => t.Country).HasColumnName("Country");
this.Property(t => t.Phone).HasColumnName("Phone");
this.Property(t => t.Fax).HasColumnName("Fax");
}
}
}

关于c# - 数据库优先与 POCO,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22308362/

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