Hello,
is it possible to decorate a field of a LINQ generated class with [Column(IsDbGenerated=true)]
using a buddy class (which is linked to the LINQ class via [MetadataType(typeof(BuddyMetadata))]
) ?
My goal is to be able to clear and repopulate the LINQ ORM designer without having to set the "Auto Generate Value" property manually every time to re-establish the fact that certain columns are autogenerated.
Thanks!