ASP.NET Core 2.1でRazorページプロジェクトを開始しています。 SQLiteを使用しようとしていますが、データベースを構成するときはSQL Serverのみがオプションのようです。
Startup.cs
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Application.Models;
using Microsoft.EntityFrameworkCore;
namespace Application
{
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<ApplicationContext>(options =>
options.UseSqlite("Data Source=Database.db"));
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.UseStaticFiles();
app.UseMvc();
}
}
}
Intellisenseはoptions.UseSqlite
を認識せず、ビルドは失敗します。これは.net core 2.0プロジェクトの問題ではありませんでした。
これはまだサポートされていませんか?ドキュメントを読むと、そのように見えます。ここで他に何が間違っているのか分かりません。
プロジェクトに Microsoft.EntityFrameworkCore.Sqlite をインストールしていないようです。
私も同じ問題を抱えていましたが、パッケージをインストールした後Install-Package Microsoft.EntityFrameworkCore.Sqlite -Version 2.1.1
NugetからMicrosoft.EntityFrameworkCore.Sqliteパッケージをインストールし、パッケージバージョンがターゲットフレームワークバージョンとも互換性があることを確認します。