20 lines
486 B
C#
20 lines
486 B
C#
|
|
using DouyinApi.Common.Seed;
|
|||
|
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
|
|
|||
|
|
namespace DouyinApi.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>();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|