SubSonic3 更新问题

发布于 2024-08-21 18:47:35 字数 347 浏览 7 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(2

辞旧 2024-08-28 18:47:35

我认为您可以使用以下示例来演示如何使用 subsonic 3

// 您可能在 Linq To Sql 中没有看到的一件事是运行更新的能力
//和插入,我一直怀念它,现在已经用 SubSonic 3.0 实现了:

            db.Update<Products>().Set(
                x => x.Discontinued == false, 
                x => x.ReorderLevel == 100)
               .Where(x=>x.Category==5)
               .Execute();

        db.Insert.Into<Region>(x => x.RegionID, x => x.RegionDescription)
          .Values(6, "Hawaii")
          .Execute();

这里有一个 完整演示的链接

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:

            db.Update<Products>().Set(
                x => x.Discontinued == false, 
                x => x.ReorderLevel == 100)
               .Where(x=>x.Category==5)
               .Execute();

        db.Insert.Into<Region>(x => x.RegionID, x => x.RegionDescription)
          .Values(6, "Hawaii")
          .Execute();

and here a link to the full demonstration

巴黎盛开的樱花 2024-08-28 18:47:35

我将其作为选择

var model = ClassName.SingleOrDefault(x => x.id == 1);

model.name = "new name";
model.tel = " new telephone;

model.save();

完成

i do it as a select

var model = ClassName.SingleOrDefault(x => x.id == 1);

model.name = "new name";
model.tel = " new telephone;

model.save();

done

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