Met de Windows 10 Fall Creators Update (build 16299) hebben UWP-apps nu rechtstreeks toegang tot SQL Server via de standaard NET-klassen (System.Data.SqlClient) - dankzij de nieuw toegevoegde ondersteuning voor .NET Standard 2.0 in UWP.
Hier is een Northwind UWP-demo-app:https://github.com/StefanWickDev/IgniteDemos
We hebben deze demo gepresenteerd op Microsoft Ignite in september 2017, hier is de opname van onze sessie (ga door naar 23:00 voor de SQL-demo):https://myignite.microsoft.com/sessions/53541
Hier is de code om de producten uit de Northwind-database op te halen (zie DataHelper.cs in de demo). Merk op dat het precies dezelfde code is die je zou schrijven voor een Winforms- of WPF-app - dankzij de .NET Standard 2.0:
public static ProductList GetProducts(string connectionString)
{
const string GetProductsQuery = "select ProductID, ProductName, QuantityPerUnit," +
" UnitPrice, UnitsInStock, Products.CategoryID " +
" from Products inner join Categories on Products.CategoryID = Categories.CategoryID " +
" where Discontinued = 0";
var products = new ProductList();
try
{
using (SqlConnection conn = new SqlConnection(connectionString))
{
conn.Open();
if (conn.State == System.Data.ConnectionState.Open)
{
using (SqlCommand cmd = conn.CreateCommand())
{
cmd.CommandText = GetProductsQuery;
using (SqlDataReader reader = cmd.ExecuteReader())
{
while (reader.Read())
{
var product = new Product();
product.ProductID = reader.GetInt32(0);
product.ProductName = reader.GetString(1);
product.QuantityPerUnit = reader.GetString(2);
product.UnitPrice = reader.GetDecimal(3);
product.UnitsInStock = reader.GetInt16(4);
product.CategoryId = reader.GetInt32(5);
products.Add(product);
}
}
}
}
}
return products;
}
catch (Exception eSql)
{
Debug.WriteLine("Exception: " + eSql.Message);
}
return null;
}
Als u eerdere versies dan de Fall Creators Update moet ondersteunen, is er ook een manier om SqlClient API's aan te roepen vanuit uw UWP-app-pakket, via de Desktop Bridge. Ik heb hier een voorbeeld van gepubliceerd:https://github.com/Microsoft/DesktopBridgeToUWP-Samples/tree/master/Samples/SQLServer