3
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

.Net Core 3.0 Windows Form + Entity Framework Core + SQLiteを試したい

Last updated at Posted at 2021-01-10

環境

  • Windows10 Pro (1903) 64bit
  • Visual Studio 2019
  • .NET Core 3.0

要約すると

.NET Core 3.0でWindows Formがサポートされました。
ASP.NET CoreでEF + SQLiteができるので、WinForm + EF + SQLiteもいけるんじゃね?という発想です。
結論として、CoreじゃないEFと大体同じ手順で出来ましたのでまとめています。
画像が多めで割と長くなりました。

アプローチ

.NET Core Windows Form Appプロジェクトを立てる

1.png
Windows Forms App (.NET Core)というなかなかの絵面

ModelとかDbContextとかを別DLLにまとめる

image.png
image.png
image.png
こんな感じのプロジェクト構成です。
WinFormCoreAppTestからEFCoreTestを参照設定しています。

Entity Framework Coreのインストール

Nugetからインストールします。
Microsoft.EntityFramework.Core.SQLite
image.png
Microsoft.EntityFramework.Core.Tools
image.png

DLL側プロジェクトにクラスを色々追加する

モデル

Product.cs
namespace EFCoreTest
{
    public class Product
    {
        [Key]
        public string ProductId { get; set; }

        public int UnitPrice { get; set; }

        public string Name { get; set; }

        public Product()
        {
            ProductId = Guid.NewGuid().ToString();
            UnitPrice = 0;
            Name = string.Empty;
        }
    }
}

コンテキスト

SampleDbContext.cs
namespace EFCoreTest
{
    public class SampleDbContext : DbContext
    {
        /// <summary>
        /// サンプル用DbSet
        /// </summary>
        public DbSet<Product> Products { get; set; }


        public SampleDbContext() : base()
        {
        }

        public SampleDbContext(DbContextOptions options) : base(options)
        {
        }

        protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
        {
            optionsBuilder.UseSqlite("Data Source=sample.db");      //ここでDBファイルを指定
        }
    }
}

ここまでやったら一度ビルドしておきます。

Migrationクラスを作成してDBファイルを作ります

コマンドを実行します。

add-migrations (Migration)

こんな感じのログが出ます。
image.png

出来ました。

InitialCreate.cs
namespace EFCoreTest.Migrations
{
    public partial class InitialCreate : Migration
    {
        protected override void Up(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.CreateTable(
                name: "Products",
                columns: table => new
                {
                    ProductId = table.Column<string>(nullable: false),
                    UnitPrice = table.Column<int>(nullable: false),
                    Name = table.Column<string>(nullable: true)
                },
                constraints: table =>
                {
                    table.PrimaryKey("PK_Products", x => x.ProductId);
                });
        }

        protected override void Down(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.DropTable(
                name: "Products");
        }
    }
}

後はMigrationを実際に反映させるので以下のコマンドを実行します。

update-database

image.png

あれ?WinFormCoreAppTestのほうに出来た?
まぁ出来てればなんでもいいので次に進みます。

Windows FormのUIを 適当に 作る

簡単にコントロールを配置して画面を作ります。
.NET Core Windows FormでのUI作成は今回の記事の趣旨ではないのでさらっと流します。
image.png
image.png
デフォルトのアイコンが若干お洒落になってる…!

CRUDを試す

とりあえずサンプルデータを作っておきます。
これが表示されるのでSelectはOK。
image.png

とりあえずInsert
image.png
image.png
一番下が追加されました。

次はUpdate
image.png
image.png
Sample2ってやつが更新されました。

最後Delete。
image.png
image.png
Sample3ってやつを削除しました。

CRUD全部OK。素晴らしい。

まとめ

  • .NET Framework Windows Form + Entity Framework (SQLServer)とほぼ同じ手順でSQLite操作ができました。
  • SQLiteのデータベースファイルがどこに出来るか、とか、ビルド時にコピーとか忘れがちかなと思います。
  • Windows Form アプリになるのでデータベースファイルがユーザーの環境に置かれるということで、後からテーブル定義変える場合は別途頭使いそう。

以上です。

3
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?