Not Just a Designer: Code First in Entity Framework: Listing 2.

Using the Code First Fluent API.

protected override void OnModelCreating(DbModelBuilder DbmodelBuilder)
{
  base.OnModelCreating(DbmodelBuilder);
  DbmodelBuilder.Entity<Company>().
    Property(c => c.CompanyName).
    IsRequired().
    HasMaxLength(50).
    HasColumnName("Name");
  DbmodelBuilder.Entity<Employee>().
    Property(e => e.FirstName).
    HasColumnType("varchar").
    IsRequired();
  DbmodelBuilder.Entity<Employee>().
    Property(e => e.LastName).
    HasColumnType("varchar").
    IsRequired();         
}

About the Author

Gil Fink, Microsoft MVP, is an expert in Web development and Microsoft data platforms. He works as a senior .NET consultant and architect at Sela Group. He's currently consulting for various enterprises, where he architects and develops Web- and rich Internet application-based solutions. He conducts lectures and workshops for developers and enterprises who want to specialize in infrastructure and Web development. You can read his publications at his blog.

comments powered by Disqus

Featured

  • Using Local AI to Cut Copilot Usage-Based Billing Shock

    After being gobsmacked by the new billing plan using almost all my monthly credits in one or two days, I tried pushing some Copilot-style coding work onto local models in VS Code. What I found was less "free AI" and more "pick your pain": cloud charges on one side, heavy local resource use and long waits on the other.

  • .NET 11 Preview 5 Focuses on Performance, Productivity and Safer Code

    .NET 11 Preview 5 focuses on under-the-hood runtime performance gains, streamlined APIs and language features that reduce boilerplate, plus built‑in security checks and incremental ASP.NET Core and EF Core improvements aimed at everyday developer productivity.

  • VS Code 1.124 Focuses on Agent Autonomy and Parallel Sessions

    Microsoft's June 2026 VS Code update turns on Autopilot by default and adds background sending for agent sessions.

  • Developing Agentic Systems in .NET: From Concept to Code

    ZioNet founder Alon Fliess previews his Visual Studio Live! San Diego session on building true agentic systems in .NET -- covering the cognitive loop, MCP tool integration, multi-agent orchestration and enterprise hosting and governance with the Microsoft Agent Framework.

Subscribe on YouTube