.net Core

时间:2017-08-20 21:27:54

标签: sharp-repository

我在.net Core中初始化SharpRepository时需要帮助吗?如何在SharpRepository中使用dbcontext?在启动的地方我可以放置初始化代码吗?

我正在使用带有sql server的Entityframeworkcore

https://github.com/SharpRepository/SharpRepository

如果您有示例代码,请发布

谢谢

1 个答案:

答案 0 :(得分:0)

现在EfCore存储库很稳定!

您需要以与Microsoft建议相同的方式设置DbContext

services.AddDbContext<ContactContext>(options =>
                options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));

在Statup.cs中的ConfigureServices中

您可以找到设置指南https://github.com/SharpRepository/SharpRepository/wiki/Getting-started

一个完整的.net核心mvc项目示例在这里: https://github.com/SharpRepository/SharpRepository/tree/develop/SharpRepository.Samples.CoreMvc

此致