Utpal Patel
Utpal Patel

Reputation: 31

UWP Communication with SQL Server Using .Net Standard 2.0

I want to communicate my UWP application with SQL Server without WCF. Unfortunately there is no way of doing this.

However I found that .Net Standard 2.0 will have System.Data namespace. Will they support SQL Server communication?

Upvotes: 1

Views: 356

Answers (1)

mm8
mm8

Reputation: 169400

Short answer: Yes.

.NET Standard 2.0 will include the SqlClient namespace that lets you connect to and query an SQL Server database.

Upvotes: 2

Related Questions