Hi, all:
I would like to add my additional attribute on a property (field)
for example , generated code is:
class Customers
{
string CustomerId {get; set}
}
and I want to add like that :
class Customers
{
[CharacterCasing(Casing.Upper)]
string CustomerId {get; set}
}
Should I modify the generated code, or
Is there a better way I can do this ?
thank you all very much!!