Subsonic 2.1:生成代码时忽略列的方法?
由于某种原因,带有“uniqueidentifier”参数的名为“rowguid”的行被添加到现有项目的某些表中。在重新生成代码时,我发现使用了名为“Insert(string Key)”的方法,但不再存在了(现在是 Insert(string Key, Guid varRowguid)。
有没有办法“忽略” ” 生成代码时的列?
注意:这个新的“rowguid”列的默认值是 Sql 服务器方法 newsequentialid()
更新: 我添加了一个“new System.GUId() “作为第二个参数,但我不想修改代码......
For some reason, a row named "rowguid" with a "uniqueidentifier" parameter was added to some tables on an already existing project. While regenerating the code, I found out that a method named "Insert(string Key)" was used, but doesn't exists anymore (it's now Insert(string Key, Guid varRowguid).
Is there a way to "ignore" a column while generating the code?
Note : The default of this new "rowguid" column is the Sql server method newsequentialid()
UPDATE : I added a "new System.GUId()" as a second parameter but I'd like to not have to modify the code...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 subsonic 2.1,您可以编辑用于生成代码的模板。我添加了一个“IF”并检查了“rowguid”...如果是这种情况,请忽略它。
With subsonic 2.1, you can edit the templates that are used to generate the code. I've added a "IF" and checked the "rowguid"... if it's the case, just ignore it.