Reputation: 1050
Is ASP.NET Core the only platform implementing Microsoft.EntityFrameworkCore.RelationalDatabaseFacadeExtensions.ExecuteSqlCommand in .NET Core 1.0.1?
Upvotes: 4
Views: 5323
Reputation: 15167
That class is part of Microsoft.EntityFrameworkCore.Relational
nuget package.
If you look at it in NuGet you can find it here.
It is supported on .NET Core 1.0 and above, and .NET Framework 4.5.1 and above.
Upvotes: 3