亚音速 - 从 2.2 迁移到 3.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.