RandyDaddis
RandyDaddis

Reputation: 1050

ExecuteSqlCommand in .NET Core

Is ASP.NET Core the only platform implementing Microsoft.EntityFrameworkCore.RelationalDatabaseFacadeExtensions.ExecuteSqlCommand in .NET Core 1.0.1?

Upvotes: 4

Views: 5323

Answers (1)

Gerardo Grignoli
Gerardo Grignoli

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

Related Questions