NetCore EF 配置DBContext By MsSql

2021/12/8 19:16:59

本文主要是介绍NetCore EF 配置DBContext By MsSql,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.配置DbContext

1.1.Startup / ConfigureServices

services.AddDbContext<CustDbContext>(options => options.UseSqlServer(configuration["ConnectionStrings:DefaultConnection"]));

如果不能注入Configuration,则为:

//读取配置文件
IConfiguration configuration = new ConfigurationBuilder().AddJsonFile("appsettings.json", false, true).Build();
services.AddSingleton(configuration);
services.AddDbContext<CustDbContext>(options => options.UseSqlServer(configuration["ConnectionStrings:DefaultConnection"]));

1.2.CustDbContext

        protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
        {
            if (!optionsBuilder.IsConfigured)
            {
                optionsBuilder.UseSqlServer("Name=ConnectionStrings:DefaultConnection");
            }
        }

2.注入DbContext

2.1.通过 IServiceProvider 注入

provider.GetService<CustDbContext>()

2.2.构造函数注入

    public class CustClass
    {
        private readonly CustDbContext dbContext;
        public CustClass(CustDbContext _dbContext)
        {
            dbContext = _dbContext;
        }
    }

 



这篇关于NetCore EF 配置DBContext By MsSql的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程