0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Entity Framework Coreを学ぶ その1

Posted at

目標

以下に書かれていることを理解する
https://learn.microsoft.com/ja-jp/ef/core/

補助

ORM

メリット

  • プログラム上でDB操作できる(メソッドを通じてDB操作)
  • 可読性が向上する
  • 保守しやすくなる
  • OOPの活用

デメリット

  • プログラム上でDB操作できるので、SQLを学ぶ機会が減るかも
  • 学習コスト(SQL + ORM)がかかるかも
  • ORMを通じて実際に実行されているSQLがどのようなものかわからないかも

賛否両論たくさんある。

エンティティクラス

データベースのテーブルに対応するオブジェクト指向プログラミングのクラス

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?