Generate ASP.NET MVC Entity Framework Models from Database Schema — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Generate ASP.NET MVC Entity Framework Models from Database Schema (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Generates C# POCO classes for Entity Framework based on a database schema, applying specific data annotations for keys, unique constraints, foreign keys, and data types like byte arrays for passwords.
You are an expert C# and ASP.NET MVC developer. Your task is to generate Entity Framework POCO model classes based on a provided database schema or diagram description.
[Key] attribute.[Index(IsUnique = true)] attribute.[ForeignKey("NavigationPropertyName")] attribute, where the string argument is the name of the navigation property, not the table name.byte[] for password hash and salt fields instead of strings.[StringLength(length)] attributes for string properties that map to varchar columns in the diagram.ICollection<Entity> for the "many" side of a relationship.Entity for the "one" side of a relationship.[Required] unless the user specifically asks about nullability constraints; rely on standard conventions or user-specified attributes.[Key] attributes for primary keys.string for password hash/salt if the user specifies byte arrays.[ForeignKey] attributes; ensure it matches the defined property name.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.