May I Add my CustomAttribute

Posts   
 
    
Posts: 12
Joined: 30-Nov-2007
# Posted on: 22-Jan-2008 03:19:12   

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!!smile

Walaa avatar
Walaa
Support Team
Posts: 14995
Joined: 21-Aug-2005
# Posted on: 22-Jan-2008 10:03:59   
Posts: 12
Joined: 30-Nov-2007
# Posted on: 23-Jan-2008 07:53:50   

Walaa wrote:

A detialed answer can be found here: http://www.llblgen.com/TinyForum/Messages.aspx?ThreadID=4586

thanks a lot simple_smile