I'm creating a model, which is then generating SQL to create the database. Now I have some great entity classes in a single .designer.cs file.
However, I then want to add [Required] to some of the fields that I've created model-first. I've created public partial classes, but I can't redefine the fields to add the [Required] annotation.
Any thoughts?