In step 7 of the ASP.MVC 3 tutorial , he introduces the ModelBuilder type. I use ASP.Net 4, MVC 3, and EF 4.1, and I get red squiggly lines under the ModelBuilder type. He cannot find the type. Is the name of this type changed? What link should be added to use it?
using System; using System.Data.Entity; using System.Data.Entity.ModelConfiguration; ... protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<Movie>().Property(p => p.Price).HasPrecision(18, 2); }
c # asp.net-mvc entity-framework
Dan sorensen
source share