Je reçois l'exception suivante lorsque j'essaie d'utiliser un DbContext personnalisé dans la base de données de l'entreprise. Configure
méthode dans Startup.cs
fichier. J'utilise ASP.NET Core dans la version 2.0.0-preview1-005977
Exception non gérée : System.Exception : Could not resolve a service of type 'Communicator.Backend.Data.CommunicatorContext' for the parameter 'dbContext' of method 'Configure' on type 'Communicator.Backend.Startup'. ---> System.InvalidOperationException : Cannot resolve scoped service 'Communicator.Backend.Data.CommunicatorContext' from Root provider.
Cette exception est également levée lorsque j'essaie de recevoir une autre instance.
Exception non gérée : System.Exception : Impossible de résoudre un service de type 'Communicator.Backend.Services.ILdapService'.
...
Voici mes ConfigureServices
y Configure
méthodes.
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<CommunicatorContext>(options => options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
services.AddCookieAuthentication();
services.Configure<LdapConfig>(Configuration.GetSection("Ldap"));
services.AddScoped<ILdapService, LdapService>();
services.AddMvc();
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory, CommunicatorContext dbContext, ILdapService ldapService)
{
app.UseAuthentication();
app.UseWebSockets();
app.Use(async (context, next) =>
{
if (context.Request.Path == "/ws")
{
if (context.WebSockets.IsWebSocketRequest)
{
WebSocket webSocket = await context.WebSockets.AcceptWebSocketAsync();
await Echo(context, webSocket);
}
else
{
context.Response.StatusCode = 400;
}
}
else
{
await next();
}
});
app.UseMvc();
DbInitializer.Initialize(dbContext, ldapService);
}