Hi Simon,
Does your generator create a MetadataType attribute for data domain class?
For example:
Steve
Does your generator create a MetadataType attribute for data domain class?
For example:
[MetadataType(typeof(ContactMetadata))]
public class Contact
{
public long CustomerId { get; set; } // Primary Key
public string Name { get; set; }
public string Address { get; set; }
... etc., etc...
}
If not, could it be added? Steve