i want to port my existing C# .NET 4.0 Desktop (Any CPU) software to Windows IoT (ARM).
in that software i make use of System.Data.DataSet/System.Data.DataTable/... and access to Microsoft SQL Server (tables and stored procedures) via System.Data.SqlClient.SqlConnection...
but the references i used in the desktop environment does not exist in the univeral environment...
so DataSet, DataTable and SqlConnection are not usable on Windows IoT...
does somebody know how to adapt the functionality or which references i have to use for DataSet / DataTable / SqlConnection?
for DataSet / DataTable i can maybe use other stuff... but to access to a MS SQL Database / Table / StoredProcedure i don't know how to adapt...