Code first EF generates primary key and index objects without names. Sql Server in turn auto generates names for these objects on the form:
PK__Invitati__033C8DCF03317E3D
I can't find a code first way of setting this to something nicer, such as PK_Invitation, is it not possible?
Thanks!