前言2015年2月如果您仍然使用Entity Framework EDMX,请使用实体框架代码首先改为使用和结帐。不同的是,您的表是从您的模型类创建的,而不是在您的模型类与您的表创建的EDMX中创建。这是一个很容易的解决方案,这个问题的问题甚至不存在!
Getting Started with Entity Framework 6 Code First using MVC 5
我有一个现有的sql数据库,我使用ADO.NET Enity数据模型的模型。我正在尝试在我的MVC应用程序中构建一些CRUD功能。
在我发现的所有教程中,他们从头开始构建模型,并将属性添加到模型类。例如:
[required] [StringLength(10)] public string Name { get; set; }
解决方法
您可以创建一个与EF生成的类分开的部分类,以便将元数据存储在其中。
//Contact.cs - The original auto-generated file [System.ComponentModel.DataAnnotations.MetadataType(typeof(ContactMetadata))] public partial class Contact { public int ContactID { get; set; } public string ContactName { get; set; } public string ContactCell { get; set; } } //ContactMetadata.cs - New,seperate class using System.ComponentModel; using System.ComponentModel.DataAnnotations; internal sealed class ContactMetadata { [required(ErrorMessage = "Name is required.")] [StringLength(5)] public string ContactName; }