在 .net Core 中初始化 SharpRepository 时需要帮助吗?如何将 dbcontext 与 SharpRepository 一起使用?在启动时我可以在哪里放置初始化代码?
我正在将 Entityframeworkcore 与 sql server 一起使用
https://github.com/SharpRepository/SharpRepository
如果您有示例代码,请发布
谢谢
在 .net Core 中初始化 SharpRepository 时需要帮助吗?如何将 dbcontext 与 SharpRepository 一起使用?在启动时我可以在哪里放置初始化代码?
我正在将 Entityframeworkcore 与 sql server 一起使用
https://github.com/SharpRepository/SharpRepository
如果您有示例代码,请发布
谢谢
现在 EfCore 存储库是稳定的!
您需要以微软建议的相同方式设置 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
问候