SubSonic 相当于 SQL 更新

发布于 2024-08-17 12:42:01 字数 226 浏览 5 评论 0原文

我想知道是否可以使用等效的 SubSonic 命令执行以下 SQL 更新查询:

UPDATE MYTABLE SET MYFIELD = MYFIELD + 3 WHERE ANOTHERFIELD = ANOTHERVALUE

我找不到合适的方法来使用设置对象引用同一字段。

对此的任何帮助将不胜感激。

问候,

费尔南多

I'm wondering if the following SQL update query is possible using the equivalent SubSonic commands:

UPDATE MYTABLE SET MYFIELD = MYFIELD + 3 WHERE ANOTHERFIELD = ANOTHERVALUE

I couldn't find a suitable way to make a reference to the same field with the Setting object.

Any help on this will be greatly appreciated.

Regards,

Fernando

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

半边脸i 2024-08-24 12:42:01

您可以使用亚音速的 QueryCommand 对象执行此查询。

您可以在这里找到类似的示例 链接链接

You can execute this query using QueryCommand object of subsonic.

You can find similar samples over here link and link

森林散布 2024-08-24 12:42:01

是的 - 您可以使用“UpdateExpression” - 它是您使用“简单”查询工具传入的字符串值。我面前没有代码或示例 - 它可能是“SetExpression”,但它允许您使用您在此处输入的字符串进行更新。

Yes - you can use "UpdateExpression" - it's a string value that you pass in with the "simple" query tool. I don't have the code or the sample in front of me - it might be "SetExpression" but it allows you to update using a string like you've entered here.

锦欢 2024-08-24 12:42:01

我用你在 SetExpression() 上所说的进行了测试,但不知怎的,我不相信我使用它是正确的......它有效,但感觉(和看起来)有点有趣,你知道吗?

int count = new Update(MyTable.Schema).SetExpression("MyField").EqualTo("MyField + 20")
.Where(....)

正如我所说,更新有效,但我不确定这是否是预期的执行方式,如果是(或者即使不是),那么我如何使用参数而不是对值进行硬编码在表达式中。

I did a test using what you said on SetExpression() but somehow I'm not convinced I'm using it right.... it works but it feels (and looks) kinda funny you know?

int count = new Update(MyTable.Schema).SetExpression("MyField").EqualTo("MyField + 20")
.Where(....)

As I said, the update worked but I'm not sure if that's the intended way of doing it, and if it is (or even if it isn't), then how could I use a parameter instead of hard-coding the value in the expression.

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