Configure Property to be Required using Fluent API in Entity Framework Core August 9, 2022 modelBuilder.Entity<Department>().Property(t => t.Name).IsRequired(); References https://docs.microsoft.com/en-us/ef/ef6/modeling/code-first/fluent/types-and-properties#configuring-the-property-to-be-required Related