实体框架 – 使用实体框架数据模型添加验证属性

前端之家收集整理的这篇文章主要介绍了实体框架 – 使用实体框架数据模型添加验证属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
前言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;
}
原文链接:https://www.f2er.com/aspnet/253413.html

猜你在找的asp.Net相关文章