2
私は、.netコアF#webアプリケーションでdbコンテキストを設定しようとしています。その一環として、私はF#にに次のように変換する必要があります。エンティティフレームワークのコアを設定できません
services.AddDbContext<ApplicationDbContext>(options =>
options.UseSqlite(Configuration.GetConnectionString("DefaultConnection")));
私のF#バージョンは次のとおりです。
services.AddDbContext<ApplicationDbContext>(fun (options: DbContextOptionsBuilder) ->
options.UseSqlite(this.Configuration.GetConnectionString("DefaultConnection")))
はしかし、私は次の例外を取得しています:
No overloads match for method 'AddDbContext'. The available overloads are shown below (or in the Error List window).property Startup.Configuration: IConfigurationRoot
何問題はありますか?