我正在尝试创建一个
Windows Universal应用程序(UWP),我需要访问一个sql Server.
据我所知
> System.Data.sqlClient不可用.
> Entity Framework 7尚不支持UWP.
我需要服务层吗?
是的,需要服务层.这里有一个例子:
How to access data from a SQL Server database in Windows 10 UWP
原文链接:https://www.f2er.com/windows/365177.html我想知道在.NET Core对EF和ADO.NET的支持下这是否会改变,以及本页的评论:EF Core1 in UWP(强调我的):
Currently EF only supports sqlite on UWP. A detailed walkthrough on installing Entity Framework Core 1,and creating models is available at the Getting Started on Universal Windows Platform page.
我的感觉是,UWP在这一点上的主要关注点是以统一的方式处理输入,布局和渲染 – 这是它旨在支持的设备系列的主要挑战. sqlite得到了广泛支持,可以安全地假设;否则,他们似乎拒绝了基于数据合同/ REST的服务,这些服务也被广泛采用.