Hello Adrian,
The context.Metadata is just a copy of the real metadata that is passed to the context in the constructor. Your changes are not taken in account. Can you change the original metadata by overriding the
protected virtual void OnDatabaseOpen(BackendConfiguration backendConfiguration, MetadataContainer metadataContainer)
Method in you context? If your context is generated, just add a partial class with the same name and override OnDatabaseOpen and put your code there.
metadataContainer.UniqueIdGenerator.CreateTable = true;
metadataContainer.UniqueIdGenerator.TableName = "Sample";
Kind regards,
Jan Blessenohl
the Telerik team
Follow @OpenAccessORM Twitter channel to be the first one to get the latest updates on new releases, tips and tricks and sneak peeks at our product labs!