欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net core系列 23 EF模型配置(概述, 类型和属性的包含与排除)

程序员文章站 2022-12-16 11:19:08
一.模型配置概述 EF使用一组约定基于实体类的定义来构建模型。 可指定其他配置以补充或替代约定的内容。本系列介绍的配置可应用于面向任何数据存储的模型,以及面向任意关系数据库时可应用的配置。 数据库提供程序还可支持特定于具体数据存储的配置,如Microsoft.EntityFrameworkCore. ......

一.模型配置概述

  ef使用一组约定基于实体类的定义来构建模型。 可指定其他配置以补充或替代约定的内容。本系列介绍的配置可应用于面向任何数据存储的模型,以及面向任意关系数据库时可应用的配置。

  数据库提供程序还可支持特定于具体数据存储的配置,如microsoft.entityframeworkcore.sqlserver,pomelo.entityframeworkcore.mysql 等,对于特定配置的文档参考数据库提供程序。

 

  1.1 使用 fluent api 配置模型

    可在派生上下文中重写 onmodelcreating 方法,并使用 modelbuilder api 来配置模型。 此配置方法最为有效,并可在不修改实体类的情况下指定配置。 fluent api 配置具有最高优先级,并将替代约定和数据注释。下面示例指定blog类型的url在保存时必填。如下所示:

    class mycontext : dbcontext
    {
        public dbset<blog> blogs { get; set; }

        protected override void onmodelcreating(modelbuilder modelbuilder)
        {
            modelbuilder.entity<blog>()
                .property(b => b.url)
                .isrequired();
        }
    }

  

  1.2 使用数据注释来配置模型

    也可将特性(称为数据注释)应用于类和属性。 数据注释会替代约定,但会被 fluent api 配置替代。下面示例指定blog类型的url在保存时必填。如下所示:

    public class blog
    {
        public int blogid { get; set; }
[required(errormessage = "请输入url")] public string url { get; set; } public icollection<post> posts { get; set; } }
     [httppost]
     public async task<iactionresult> create([bind("url")] blog blog)
      {
            if (modelstate.isvalid)
            {
                bloggingcontext.add<blog>(blog);
                await bloggingcontext.savechangesasync();
            }
            return view();
      }

    在mvc中, 新增一条blog数据,url 字段为空(包含空格),点击提交时,在后台create中验证,设置断点查看modelstate.isvalid为false。

    其中取url字段的errormessage信息是:modelstate["url"].errors[0].errormessage 

     

二.类型的包含和排除约定   

   将类型(实体类型)包含到模型中意味着,ef会有该类型的元数据,并且会尝试从数据库读取实例(读取对应的数据表),以及将实例(实体对象数据)写入到数据库中。按照约定,在上下文的 dbset 属性中公开的类型(实体类型)会包含在模型中。 此外,在 onmodelcreating 方法中提及的类型(实体类型)也将包含在其中。 最后,通过以递归方式浏览已发现类型的导航属性而找到的任何类型也会包含在模型中。下面举例一 一说明:

  

  2.1  类型包含约定

class mycontext : dbcontext
{
    //公开blog类型,将与数据库表产生映射关系 
    public dbset<blog> blogs { get; set; }

    protected override void onmodelcreating(modelbuilder modelbuilder)
    {
       //公开auditentry类型,将与数据库表产生映射关系
        modelbuilder.entity<auditentry>();
    }
}

    public class blog
{
    public int blogid { get; set; }
    public string url { get; set; }

    //公开post类型,通过导航属性。将与数据库表产生映射关系
    public list<post> posts { get; set; }
}

public class post
{
    public int postid { get; set; }
    public string title { get; set; }
    public string content { get; set; }

    public blog blog { get; set; }
}

public class auditentry
{
    public int auditentryid { get; set; }
    public string username { get; set; }
    public string action { get; set; }
}

    上面示例中:(1)blog,因为它是在上下文的 dbset 属性中公开的。(2)post,因为它是通过 blog.posts 导航属性发现的。(3) auditentry,因为它在 onmodelcreating 中提及。

 

  2.2 类型排除约定

     (1)可以使用数据注释来从模型中排除类型。

public class blog
{
    public int blogid { get; set; }
    public string url { get; set; }

    public blogmetadata metadata { get; set; }
}

[notmapped]
public class blogmetadata
{
    public datetime loadedfromdatabase { get; set; }
}

    (2)也可以通过fluent api 把模型中类型排除。

class mycontext : dbcontext
{
    public dbset<blog> blogs { get; set; }

    protected override void onmodelcreating(modelbuilder modelbuilder)
    {
        modelbuilder.ignore<blogmetadata>();
    }
}

public class blog
{
    public int blogid { get; set; }
    public string url { get; set; }

    public blogmetadata metadata { get; set; }
}

public class blogmetadata
{
    public datetime loadedfromdatabase { get; set; }
}

 

 三.属性的包含和排除约定

   模型中包含属性意味着 ef 拥有该属性的元数据,并将尝试从数据库读取值或者向数据库写入值。按照约定,模型所含的那些公共属性都拥有一个 getter 和一个 setter。

 

  3.1 数据注释

     可以使用数据注释方式来从模型中排除某个属性

    public class blog
    {
       //公开的属性
        public int blogid { get; set; }
        public string url { get; set; }

       //排除的属性
       [notmapped]
        public datetime loadedfromdatabase { get; set; }
    }

 

   3.2 fluent api

     也可以用fluent api 从模型中排除某个属性。

class mycontext : dbcontext
{
    public dbset<blog> blogs { get; set; }

    protected override void onmodelcreating(modelbuilder modelbuilder)
    {
        modelbuilder.entity<blog>().ignore(b => b.loadedfromdatabase);
    }
}

public class blog
{
    public int blogid { get; set; }
    public string url { get; set; }

    public datetime loadedfromdatabase { get; set; }
}

 

  参考文献:

    官方资料: