- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
将 Windows Phone 应用程序或 Windows 8 应用程序直接连接到 SQL Server 的最佳方法是什么?
应用程序不得使用代理/IIS 等,并希望像普通桌面应用程序一样使用 SQL 直接连接。
谢谢。
最佳答案
由于 Metro-Apps-Sandbox 概念,您不能直接连接到 SQL Server。他们只能通过服务与服务器通信。我所知道的解决此限制的唯一方法是 SQLite集成到 Windows 8 应用程序中。
在我看来,最好的方法(如果您使用 Visual Studio)是 EntityFramework .一开始看起来有点复杂,但是 ORM在开发过程中确实有帮助(通过智能感知减少错误,提高对注入(inject)的安全性)。然后你把它包装成一个 WCF Data Service并且您已准备好在您的应用程序中使用任何 SQL 数据库。
The Entity Framework enables developers to work with data in the form of domain-specific objects and properties, such as customers and customer addresses, without having to concern themselves with the underlying database tables and columns where this data is stored. With the Entity Framework, developers can work at a higher level of abstraction when they deal with data, and can create and maintain data-oriented applications with less code than in traditional applications
您可以选择两种方式:
但是也有一些缺点:
Here是 EF 项目的页面。您应该从这里开始深入研究。
关于c# - 将 Windows Phone 和 Windows 8 应用程序连接到 SQL Server,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17950091/
我是一名优秀的程序员,十分优秀!