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

  • Visual Studio Insiders Further Refines Copilot Usage Tracking

    With devs reeling from usage-based billing sticker shock, Visual Studio 18.9 makes monthly Copilot plan usage easier to reach from the coding workflow while adding more cost information to a redesigned model picker.

  • VS Code 1.130 Expands Agent Host and Review Tools

    Microsoft's latest weekly VS Code release advances shared agent sessions, multi-file change review, chat visibility and terminal navigation

  • Microsoft Agent Framework Makeover: Claws, Loops and Harnesses

    Microsoft's newly released Agent Framework Harness packages the loops, planning, memory, context management and safety controls that developers previously had to assemble around AI models themselves.

  • Visual Studio 2026 Gives Copilot Built-In Skills -- and Makes Them Prove Their Worth

    Microsoft is moving Agent Skills beyond bring-your-own instructions by shipping expert-authored workflows with the IDE, while keeping them off by default until testing shows their benefits justify the additional token use.

Subscribe on YouTube