亚音速 - 从 2.2 迁移到 3.0

发布于 2024-08-18 12:37:09 字数 255 浏览 6 评论 0原文

在哪里可以找到从 SubsSonic 2.2 到 3.0 的代码迁移示例。 例如我们有 Subssonic 2.2 代码:

public static void SavePageModules(PageModuleCollection modCol)
{
            modCol.SaveAll();
}

我们如何为 3.0 编写这个方法。 Collection 在 3.0 中是否已弃用?

此致。

Where can I find an examples of code migration from SubsSonic 2.2 to 3.0.
For example we have Subssonic 2.2 code:

public static void SavePageModules(PageModuleCollection modCol)
{
            modCol.SaveAll();
}

How do we write this method for 3.0.
Are Collection deprecated in 3.0.

Best regards.

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

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

发布评论

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

评论(1

就是爱搞怪 2024-08-25 12:37:09

Subsonic 3 中没有 SaveAll 的等效项。我建议您检查批量查询功能:http://subsonicproject.com /docs/BatchQuery 迁移意味着重写代码,因为 Subsonic 3 是基于不同的架构并使用另一个平台构建的:框架 3.5。

There is no equivalent for SaveAll in Subsonic 3. I suggest you check the batch query feature: http://subsonicproject.com/docs/BatchQuery The migration implies rewrite code, since Subsonic 3 has been constructed over a different schema and using another paltform: the framework 3.5.

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