add-migration initial DbContext hata çözümü
Gönderilme zamanı: 16 Nis 2021 09:46
An error occurred while accessing the Microsoft.Extensions.Hosting services. Continuing without the application service provider. Error: Some services are not able to be constructed (Error while validating the service descriptor 'ServiceType: MCTarz.DAL.Contexts.WebContext Lifetime: Scoped ImplementationType: MCTarz.DAL.Contexts.WebContext': Unable to resolve service for type 'Microsoft.EntityFrameworkCore.DbContextOptions`1[Microsoft.EntityFrameworkCore.DbContext]' while attempting to activate 'MCTarz.DAL.Contexts.WebContext'.)
Unable to create an object of type 'WebContext'. For the different patterns supported at design time, see https://go.microsoft.com/fwlink/?linkid=851728
WebContext.cs içerisinde en alta ekleyip
Yukarıdaki kodun en sonunda bulunan
ÖNEMLİ NOT:Kodlarda geçen WebContext ifadesi projelerimden birinde kullandığım Context dosyamın adıdır. WebContext olarak geçen kısımları kendi projenizde oluşturmuş olduğunuz Context ismiyle değiştirmeyi unutmayınız!!!
Unable to create an object of type 'WebContext'. For the different patterns supported at design time, see https://go.microsoft.com/fwlink/?linkid=851728
WebContext.cs içerisinde en alta ekleyip
add-migration initial
çalıştır.
Kod: Tümünü seç
public class DesignTimeDbContextFactory : IDesignTimeDbContextFactory<WebContext>
{
public WebContext CreateDbContext(string[] args)
{
var builder = new DbContextOptionsBuilder<WebContext>();
var connectionString = "Server=serverAdınızıYazınız;Database=Veritabanı adınızıYazınız;Trusted_Connection=True;";
builder.UseSqlServer(connectionString);
return new WebContext(builder.Options);
}
}
(builder.Options);
ifadesinin altı kırmızı çizgiliyse aşağıdaki kodu aynı şekilde ekleyiniz.Kod: Tümünü seç
public WebContext([NotNullAttribute] DbContextOptions options) : base(options) { }