14 lines
319 B
C#
14 lines
319 B
C#
using Furion;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Yi.Framework.Infrastructure.Sqlsugar;
|
|
|
|
namespace Yi.Furion.Sqlsugar.Core;
|
|
|
|
public class Startup : AppStartup
|
|
{
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
services.AddDbSqlsugarContextServer<YiDbContext>();
|
|
}
|
|
}
|