I am using Entity framework and would like to have a constructor in each of my entities that initializes the PK property to Guid.NewGuid(). I was wondering if there was a way to have this done automatically instead of having to do it myself, maybe playing with the .TT file scripts that create my C# source code. Any ideas?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
T4 templates are so not object oriented... Maybe you can do that in the constructor of a base class... |
|||
|
|