ado.net 实体数据模型不适用于 WP8 和 UWP
ado.net entity data model not available for WP8 and UWP
你好我最近开始学习wp8和uwp,但是找不到"ado.net entity data model"项目。当我创建 WPF 应用程序时它可用,但在 widows phone 8、8.1 和 UWP 中它不可用。这是一个错误,还是它不适用于移动项目?
我正在使用 VS2015 社区
您不能直接在windowsphone项目中使用Entity framework
。
您可以在您的网络服务中使用 EF 或 api 并使用该服务与您的 phone 客户进行通信
Starting with Windows Phone OS 7.1, you can store relational data in a local database that resides in your app’s local folder. Windows Phone apps use LINQ to SQL for all database operations; LINQ to SQL is used to define the database schema, select data, and save changes to the underlying database file residing in the local folder. This topic provides an overview of using a local database with your Windows Phone app. For a step-by-step walkthrough of creating an app that uses a local database Msdn Refernece
您可以在 WP 应用程序中使用 SQLite
而不是 Entity framework
Sample 1
在堆栈中查看类似 question
你好我最近开始学习wp8和uwp,但是找不到"ado.net entity data model"项目。当我创建 WPF 应用程序时它可用,但在 widows phone 8、8.1 和 UWP 中它不可用。这是一个错误,还是它不适用于移动项目? 我正在使用 VS2015 社区
您不能直接在windowsphone项目中使用Entity framework
。
您可以在您的网络服务中使用 EF 或 api 并使用该服务与您的 phone 客户进行通信
Starting with Windows Phone OS 7.1, you can store relational data in a local database that resides in your app’s local folder. Windows Phone apps use LINQ to SQL for all database operations; LINQ to SQL is used to define the database schema, select data, and save changes to the underlying database file residing in the local folder. This topic provides an overview of using a local database with your Windows Phone app. For a step-by-step walkthrough of creating an app that uses a local database Msdn Refernece
您可以在 WP 应用程序中使用 SQLite
而不是 Entity framework
Sample 1
在堆栈中查看类似 question