agilelabs-fx-docs main data-access/register.md

服务注册

本页只展示最小注册方式。当前默认推荐路线是 Dapper;EF Core 注册只保留在遗留兼容页中。整体边界请优先阅读 数据访问

    public static class ServiceCollectionExtensionsForRepository
    {
        public static IServiceCollection AddDatabaseStore(this IServiceCollection services, AppBuildContext buildContext)
        {
            services.AddScoped<DapperBaseRepository>();
            services.AddScoped<OrderRepository>();
            return services;
        }
    }

相关页面