Subsonic 2.1:生成代码时忽略列的方法?

发布于 2024-09-16 00:21:14 字数 337 浏览 6 评论 0原文

由于某种原因,带有“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终陌 2024-09-23 00:21:14

使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文