Blog.Core/Blog.Core.Extensions/ServiceExtensions/DbSetup.cs

20 lines
486 B
C#
Raw Normal View History

2021-07-29 15:29:13 +08:00
using Blog.Core.Common.Seed;
using Microsoft.Extensions.DependencyInjection;
namespace Blog.Core.Extensions
{
/// <summary>
/// Db 启动服务
/// </summary>
public static class DbSetup
{
public static void AddDbSetup(this IServiceCollection services)
{
if (services == null) throw new ArgumentNullException(nameof(services));
services.AddScoped<DBSeed>();
services.AddScoped<MyContext>();
}
}
}