I'm looking at created a T4 template to generate enums of my database. Essential I want the same feature as SubSonic e.g. Product.Columns.ProductId for Linq-to-SQL or Entity Framework 4.
Any help would be much appreciated. thanks.
|
I'm looking at created a T4 template to generate enums of my database. Essential I want the same feature as SubSonic e.g. Product.Columns.ProductId for Linq-to-SQL or Entity Framework 4. Any help would be much appreciated. thanks. |
|||
|
|
|
I have written one for my needs that converts a lookup table of your choice to an enum: Put this code inside an EnumGenerator.ttinclude file:
Then whenever you'd like an enum to be generated, just create a tt file with the same name as database table like UserType.tt and put this code in:
An even more advanced template is now available in my blog post. |
|||||||||||||||||
|
|
Alternative implementation of Pascalize:
If you end up with a null result, I recommend using "Value" + id as value. Result must be compared to previous values, you can add '_' to end if you have duplicates created (due to bad data or omitted characters). E.g.
|
||||
|
|