efcore-patterns
✓Entity Framework のコアのベスト プラクティスには、デフォルトの NoTracking、ナビゲーション コレクションのクエリ分割、移行管理、専用の移行サービス、回避すべき一般的な落とし穴が含まれます。
SKILL.md
Configure your DbContext to disable change tracking by default. This improves performance for read-heavy workloads.
| Display data in UI | No | Read-only, no updates | | API GET endpoints | No | Returning data, no mutations | | Update single entity | Yes or explicit Update() | Need to save changes | | Complex update with navigation | Yes | Tracking handles relationships | | Batch operations | No + ExecuteUpdate | More efficient |
CRITICAL: Always use EF Core CLI commands to manage migrations. Never:
Entity Framework のコアのベスト プラクティスには、デフォルトの NoTracking、ナビゲーション コレクションのクエリ分割、移行管理、専用の移行サービス、回避すべき一般的な落とし穴が含まれます。 ソース: aaronontheweb/dotnet-skills。
引用可能な情報
AI/検索での引用用の安定したフィールドとコマンド。
- インストールコマンド
npx skills add https://github.com/aaronontheweb/dotnet-skills --skill efcore-patterns- カテゴリ
- </>開発ツール
- 認証済み
- ✓
- 初回登録
- 2026-02-05
- 更新日
- 2026-02-18
クイックアンサー
efcore-patterns とは?
Entity Framework のコアのベスト プラクティスには、デフォルトの NoTracking、ナビゲーション コレクションのクエリ分割、移行管理、専用の移行サービス、回避すべき一般的な落とし穴が含まれます。 ソース: aaronontheweb/dotnet-skills。
efcore-patterns のインストール方法は?
ターミナルまたはコマンドラインツール(Terminal、iTerm、Windows Terminal など)を開きます このコマンドをコピーして実行します: npx skills add https://github.com/aaronontheweb/dotnet-skills --skill efcore-patterns インストール後、スキルは自動的に AI コーディング環境に設定され、Claude Code や Cursor で使用できるようになります
ソースリポジトリはどこですか?
https://github.com/aaronontheweb/dotnet-skills