LoginSignup
4
5

More than 3 years have passed since last update.

ASP.net

Last updated at Posted at 2019-09-08

ASP.net とは?

Microsoftが提供しているフレームワーク

ASP.net Core

適宜バージョンアップ

# EntityFramework

端的に言うと
「.NET Framework」のコンポーネント

利点:オブジェクト操作をSQLなどのDB操作に自動変換してくれる。

Code First

「Plain Old CLR Object」
データ構造を定義したクラスを元にEntity Frameworkが自動でテーブルを生成してくれる優れもの

Person.cs
public class Person 
{
  public string id;
  public string name;
  public string age;
  public string gender;
}

上記の様にデータ構造を記述したファイル(Model)を作成することでDBのテーブルを作成してくれる。(※テーブル作成にはマイグレーションの実施が必須)

4
5
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
4
5