We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7f87dc commit ae93c04Copy full SHA for ae93c04
global.json
@@ -1,3 +1,3 @@
1
{
2
- "projects": [ "src", "experimental" ]
+ "projects": [ "src" ]
3
}
src/Benchmarks/Startup.cs
@@ -50,7 +50,7 @@ public void ConfigureServices(IServiceCollection services)
50
services.AddSingleton<ApplicationDbSeeder>();
51
52
// TODO: Add support for plugging in different DbProviderFactory implementations via configuration
53
- services.AddSingleton<DbProviderFactory>(s => SqlClientFactory.Instance);
+ services.AddSingleton<DbProviderFactory>(SqlClientFactory.Instance);
54
55
services.AddEntityFramework()
56
.AddSqlServer()
0 commit comments