SubSonic3 更新问题
在 SubSonic3 中可以做这样的事情吗?
_db.Update<Product>()
.Set("UnitPrice")
.EqualTo(UnitPrice + 5)
.Where<Product>(x=>x.ProductID==5)
.Execute();
我需要这样的东西:
UPDATE Blocks
SET OrderId = OrderId - 1
WHERE ComponentId = 3
但是在 SubSonic3 中
Is it possible to do something like this in SubSonic3?
_db.Update<Product>()
.Set("UnitPrice")
.EqualTo(UnitPrice + 5)
.Where<Product>(x=>x.ProductID==5)
.Execute();
I would need something lik this:
UPDATE Blocks
SET OrderId = OrderId - 1
WHERE ComponentId = 3
But in SubSonic3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您可以使用以下示例来演示如何使用 subsonic 3
// 您可能在 Linq To Sql 中没有看到的一件事是运行更新的能力
//和插入,我一直怀念它,现在已经用 SubSonic 3.0 实现了:
这里有一个 完整演示的链接
I think you can here is a sample for demonstrating how you can use subsonic 3
// One thing you might not have seen with Linq To Sql is the ability to run Updates
//and Inserts, which I've always missed and have now implemented with SubSonic 3.0:
and here a link to the full demonstration
我将其作为选择
完成
i do it as a select
done