I don\'t think it\'s possible but since I haven\'t got a definite clarity from MSDN, I feel that it\'s best to ask. Suppose that we have a class as follows.
of course you can do it using Metadata as follow:
public partial class Hazaa : EntityBase
{
public int Shazoo { get; set; }
}
[MetadataTypeAttribute(typeof(HazaaMetadata))]
public partial class Hazaa : EntityBase
{
internal sealed class HazaaMetadata
{
[SuperCool]
public int Shazoo { get; set; }
}
}