Conversion to new conventions
Hi,
I think im being a bit simple, but i cant seem to figure out this simple conversion to the new conventions.
I had
GetPrimaryKeyNameFromType = type => type.Name + "Id"
and by searching for the new conventions i take it i should use something lilke
ConventionBuilder.Id.Always(x => x.Column(x + x.EntityType.Name + "Id")
this resulted in ... - Instances.IdentityInstanceProductId rather than ProductId
Has anyone else done this and can help me out?