web-dev-qa-db-ja.com

ASP.NET Core 2.1のEntity Framework CoreでのUseSqliteが機能しない

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プロジェクトの問題ではありませんでした。

これはまだサポートされていませんか?ドキュメントを読むと、そのように見えます。ここで他に何が間違っているのか分かりません。

5
nick

プロジェクトに Microsoft.EntityFrameworkCore.Sqlite をインストールしていないようです。

16
vivek nuna

私も同じ問題を抱えていましたが、パッケージをインストールした後Install-Package Microsoft.EntityFrameworkCore.Sqlite -Version 2.1.1

1
Raj

NugetからMicrosoft.EntityFrameworkCore.Sqliteパッケージをインストールし、パッケージバージョンがターゲットフレームワークバージョンとも互換性があることを確認します。

0
Tharaka.W