• Entity Framework 6.0 Tutorials(3):Code-based Configuration


    Code-based Configuration:

    Entity Framework 6 has introduced code based configuration. Now, you can configure Entity Framework related settings using the code which had been previously configured in the <entityframework> section of the app.config. However, app.config takes precedence over code-based configuration. In other words, if a configuration option is set in both the code and in the config file, then the setting in the config file is used.

    Let's see how to implement code-based configuration using Entity Framework 6.

    First of all, you need to create a new class that derives the DbConfiguration (System.Data.Entity.DbConfiguration) class :

    public class FE6CodeConfig : DbConfiguration
    {
        public FE6CodeConfig()
        {
            //define configuration here
        }
    }

    Now, you can set codeConfigurationType in the config file as shown below:

    <entityFramework codeConfigurationType="EF6DBFirstTutorials.FE6CodeConfig, EF6DBFirstTutorials">
    </entityFramework>

    Or you can use the DbConfigurationType attribute on the context class to set the code-based configuration class:

    async query output

    Note: EF does not support having multiple configuration classes used in the same AppDomain. If you use this attribute, to set different configuration classes for two contexts, then an exception will be thrown.

    Now, you can use different methods of DbConfiguration using this in the constructor as shown below:

    async query output

    Let's see how to do different settings using code-based configuration as well as the config file.

    Set default connection factory:

    Code-based configuration:

    public class FE6CodeConfig : DbConfiguration
        {
            public FE6CodeConfig()
            {
                this.SetDefaultConnectionFactory(new System.Data.Entity.Infrastructure.SqlConnectionFactory());
            }
    }

    config file:

    <entityFramework>
        <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
    </entityFramework>

    Set Database Provider:

    Code-based configuration:

    public class FE6CodeConfig : DbConfiguration
    {
        public FE6CodeConfig()
        {
        this.SetProviderServices("System.Data.SqlClient", 
                    System.Data.Entity.SqlServer.SqlProviderServices.Instance);
        }
    }

    config file:

    <entityFramework>
        <providers>
            <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
        </providers>
    </entityFramework>

    Set Database Initializers:

    You can set database initializers (for Code-First only) using code-based configuration as shown below:

    public class FE6CodeConfig : DbConfiguration
    {
            public FE6CodeConfig()
            {
                this.SetDatabaseInitializer<SchoolDBEntities>(new CustomDBInitializer<SchoolDBEntities>());
            }
    }

    config file:

    <entityFramework>
        <contexts>
            <context type="EF6DBFirstTutorials.SchoolDBEntities, EF6DBFirstTutorials"  >
            <databaseInitializer   type="EF6DBFirstTutorials.CustomDBInitializer , EF6DBFirstTutorials">
            </databaseInitializer>
            </context>
        </contexts>    
    </entityFramework>

    Download sample project for Code-based configuration demo.

  • 相关阅读:
    让你的 Python 代码优雅又地道
    Python3简单爬虫抓取网页图片
    Python 全集变量
    python-ConfigParser模块【读写配置文件】
    Python 第三方插件库
    Python 安装 lxml 插件
    Python cmd中输入'pip' 不是内部或外部命令,也不是可运行的程序或批处理文件。
    SQLServer代理新建或者编辑作业报错
    Python pycharm 常用快捷键
    python 安装插件 requests、BeautifulSoup
  • 原文地址:https://www.cnblogs.com/purplefox2008/p/5649525.html
Copyright © 2020-2023  润新知