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)
40
40
services . AddDbContext < TContext > ( options =>
41
41
options
42
42
. 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:" ) ) ;
48
48
49
49
services . AddDefaultIdentity < TUser > ( )
50
50
. AddRoles < IdentityRole > ( )
You can’t perform that action at this time.
0 commit comments