entity-framework-migration

entity-framework-migration is a skill for Claude Code from ivegamsft/basecoat. It costs 92 tokens per session (302 once invoked), scanned A, original, MIT.

A migration guide for moving data access code from Entity Framework 6 to EF Core. Entity Framework is a .NET tool that maps application objects to database tables and runs database queries.

In plain words
What is it for?
Use it to review `DbContext` code, convert model mappings, assess migration history and schema limits, and plan correctness and performance checks.
Why use it?
It helps identify compatibility problems, changes to mappings and queries, and risks before moving a live data layer. It also supports a gradual move instead of requiring one large cutover.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to review DbContext code, convert model mappings, assess migration history and schema limits, and plan correctness and performance checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ivegamsft/basecoat/entity-framework-migration
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ivegamsft/basecoat --skill entity-framework-migration
Clone the repo
git clone --depth 1 https://github.com/ivegamsft/basecoat

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for entity-framework-migration

README.md
[![agentmods](https://agentmods.dev/badge/skills/ivegamsft/basecoat/entity-framework-migration/github.svg)](https://agentmods.dev/skills/ivegamsft/basecoat/entity-framework-migration)
Your own site
<a href="https://agentmods.dev/skills/ivegamsft/basecoat/entity-framework-migration"><img src="https://agentmods.dev/badge/skills/ivegamsft/basecoat/entity-framework-migration/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for entity-framework-migration

Your own site · 80×15
<a href="https://agentmods.dev/skills/ivegamsft/basecoat/entity-framework-migration"><img src="https://agentmods.dev/badge/skills/ivegamsft/basecoat/entity-framework-migration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 302 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00092 $0.00302
Opus 5 $0.00046 $0.00151
Sonnet 5 $0.00018 $0.00060
Haiku 4.5 $0.00009 $0.00030

Measured today against content hash 82546dd71105, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

entity-framework-migration scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/entity-framework-migration/SKILL.md · 40 lines

What it actually says

Entity Framework Migration

Use this skill when modernizing data layers from Entity Framework 6 or older patterns to EF Core.

When to use

  • Assessing EF6-to-EF Core migration feasibility
  • Refactoring data access patterns and DbContext configuration
  • Migrating model mappings and conventions
  • Planning phased cutovers for schema and query behavior changes

Inputs

  • Existing data access projects and context classes
  • Current migration history and database schema constraints
  • Query hot paths and performance baselines

Outputs

  • EF migration approach and risk summary
  • Mapping and query refactor checklist
  • Validation strategy for correctness and performance
Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today First seen · 40 lines · 92 tokens per session scan A 82546dd71105

Subscribe to this mod's changes

entity-framework-migration is a skill published in the GitHub repository ivegamsft/basecoat (4 stars, last pushed today), licensed MIT. It adds 92 tokens to every session and 302 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-08.

Related

Other skills, from other repositories

entity-framework-core

Design, tune, or review EF Core data access with proper modeling, migrations, query translation, performance, and lifetime management for modern .NET applications. USE FOR: DbContext, migrations, model configuration, EF queries, tracking, loading, performance, transactions, and EF6 migration decisions. DO NOT USE FOR…

managedcode/dotnet-skills · 110 tokens

entity-framework6

Maintain or migrate EF6-based applications with realistic guidance on what to keep, what to modernize, and when EF Core is or is not the right next step. USE FOR: EF6 codebases; runtime versus ORM migration decisions; EDMX, code-first, ObjectContext, and legacy data-access review. DO NOT USE FOR: unrelated stacks…

managedcode/dotnet-skills · 114 tokens

add-slice

Scaffold a slice in this Vertical Slice Architecture template — one use case in its own folder, with its FastEndpoints endpoint, request, response, validator, and summary, plus the Feature and Group if they don't exist yet, plus tests. Use when the user says "add a slice", "add a use case", "add an endpoint", "add a…

SSWConsulting/SSW.VerticalSliceArchitecture · 125 tokens

sod

Use when needing a multi-paradigm .NET ORM with SQL-MAP (MyBatis-style XML mapping), OQL (Object Query Language), and traditional ORM. PDF.NET SOD: combines ORM + SQL-MAP + OQL for flexible .NET data access.

znlgis/opengis-skills · 57 tokens

sqlsugar

Use when doing multi-database ORM operations in .NET — SQL Server, MySQL, PostgreSQL, SQLite, Oracle with fluent API, code-first, and LINQ. SqlSugar: high-performance .NET ORM supporting 10+ databases.

znlgis/opengis-skills · 53 tokens

nettopologysuite

Use when performing 2D computational geometry in .NET — spatial predicates, overlay operations, buffering, WKT/WKB I/O. NetTopologySuite: the .NET port of JTS, available via NuGet for spatial analysis in C# applications.

znlgis/opengis-skills · 57 tokens