Voyager.DbCommandSql 1.2.1

dotnet add package Voyager.DbCommandSql --version 1.2.1
NuGet\Install-Package Voyager.DbCommandSql -Version 1.2.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Voyager.DbCommandSql" Version="1.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Voyager.DbCommandSql --version 1.2.1
#r "nuget: Voyager.DbCommandSql, 1.2.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Voyager.DbCommandSql as a Cake Addin
#addin nuget:?package=Voyager.DbCommandSql&version=1.2.1

// Install Voyager.DbCommandSql as a Cake Tool
#tool nuget:?package=Voyager.DbCommandSql&version=1.2.1

Voyager.DbCommandSql

Generate SQL text query from DbCommand. Can be used for unit test and integration test purposes.

How to use it

There is added extension to the DbCommand class GetGeneratedQuery. This is an example of how to use:

using System.Data.Common;

  [Test]
  public void SimpleSelectParam()
  {
    var cmd = provider.CreateCommand();
 
...

    string test = cmd.GetSql();
    Assert.That(test, Is.EqualTo("SELECT * FROM dbo.Akwizytor WHERE IdAkwizytor='TESTAKWIZYTOR1'"));
  }

✍️ Authors

  • @andrzejswistowski - Idea & work. Please let me know if you find out an error or suggestions.

contributors.

🎉 Acknowledgements

  • Przemysław Wróbel - for the icon.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.1

    • No dependencies.
  • .NETFramework 4.7.2

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.1 230 3/27/2023
1.2.0 188 3/25/2023
1.1.0 191 3/22/2023