c# - SubSonic 2.2 Class Generation -
I am using SubSonic with several tables on one source which were created by a source code generator. I saw that some classes created by subsonic were generated without code and the message has been sent
class ... was not generated ... because the primary key is not
Is there a way to get the code without adding the key to all the tables?
Thank you
Add primary key to the table as an primary key : Increase increment can create int field.
This happens with almost every database layer code generator, because without the primary key it can not delete the editing / functionality.
Comments
Post a Comment