File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/Identity/testassets/Identity.DefaultUI.WebSite Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -40,11 +40,11 @@ public virtual void ConfigureServices(IServiceCollection services)
4040 services . AddDbContext < TContext > ( options =>
4141 options
4242 . ConfigureWarnings ( b => b . Log ( CoreEventId . ManyServiceProvidersCreatedWarning ) )
43- . UseSqlServer (
44- Configuration . GetConnectionString ( "DefaultConnection" ) ,
45- sqlOptions => sqlOptions . MigrationsAssembly ( "Identity.DefaultUI.WebSite" )
46- ) ) ;
47- // .UseSqlite("DataSource=:memory:"));
43+ // .UseSqlServer(
44+ // Configuration.GetConnectionString("DefaultConnection"),
45+ // sqlOptions => sqlOptions.MigrationsAssembly("Identity.DefaultUI.WebSite")
46+ // ));
47+ . UseSqlite ( "DataSource=:memory:" ) ) ;
4848
4949 services . AddDefaultIdentity < TUser > ( )
5050 . AddRoles < IdentityRole > ( )
You can’t perform that action at this time.
0 commit comments