在WP7上制作离线数据库应用-找到正确的方法
我需要在 WP7 上构建一个离线数据库应用程序。 应用程序很简单 - 它是关于从我们的客户那里发出订单,然后将其转换到主服务器(MS SQL)。
花一天时间阅读现有技术 - 但我仍然很困惑。哪个适合该项目?
同步框架。 看起来不错,但据我了解 - 它提供了单个表格 - 它们之间没有参考。我必须在客户端构建所有参考资料。悲伤。
服务器端的实体框架。 我不知道 - 我可以在客户端使用什么。有没有办法将实体对象序列化到隔离存储,然后恢复它并继续使用它?也许我可以使用 Sync FrameWork,但是方案会变得很奇怪 - 一种方式。)))
使用 WCF 和 WCF 进行工作。 XML——对我来说最简单。很多代码和转换,但在这种情况下我了解数据流。在其他视图中 - 我已经有了带有纯 SQL 查询的应用程序。我想成为先进的。 ))))
使用分机。数据库(例如 siaqodb)。 哪一个? siaqodb 支持“同步提供程序”,但它不支持对象之间的引用 - 所以我必须自己构建它们?有什么收获吗?我不知道。
还有其他方法来构建此类应用程序吗?请指点一下。
I need to build an offline database application on WP7.
App is simple - it's about making orders from our clients, then translate it to main server (MS SQL).
Spend a days read about existing techologies - but I'am still confused. Which is right for that project?
Sync Framework.
Looking good, but as I understand - it provides single tables - no reference beetwen them. All the references I have to build on client side. Sad.Entity FrameWork on server side.
And I have no clue - what can I use on client side. Is there a way to serialize entity object to Isolate Store, then restore it, and continue work with it? May be I can use Sync FrameWork, but scheme will become strange then - kinda one way.)))Working with WCF & XML - most simple for me. A lot of code and conversion, but in this case I understand the data flow. In other view - I already have app with pure SQL-queries. I wanna be advanced. ))))
Using ext. databases (siaqodb for example).
Which one? siaqodb suppots "Sync provider", but it doesn't support references beetwen objects - so I have to build them by myself? Any gain? I don't know.
Is there another way to build such apps? Point it please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这必须离线完成,那么我通常会使用类似的方法:
我认为这是您的选项3?
我从来都不喜欢自动数据同步。我只是发现自己编写同步代码并处理错误情况更容易 - 如果您的 wp7 客户端应用程序使用相对于较大的主服务器数据库而言相当小的数据占用量,则尤其如此。
If this has to be done offline, then I would generally use something like:
I think this is your option 3?
I've never really liked automatic data synchronisation. I just find it easier to code the sync and deal with the error cases myself - this is especially the case if your wp7 client app uses quite a small footprint of data in relation to the larger main server db.