RawSqlLib 1.1.0

dotnet add package RawSqlLib --version 1.1.0
NuGet\Install-Package RawSqlLib -Version 1.1.0
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="RawSqlLib" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RawSqlLib --version 1.1.0
#r "nuget: RawSqlLib, 1.1.0"
#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 RawSqlLib as a Cake Addin
#addin nuget:?package=RawSqlLib&version=1.1.0

// Install RawSqlLib as a Cake Tool
#tool nuget:?package=RawSqlLib&version=1.1.0

RawSqlLib - Raw SQL Library

This library is a simple wrapper to make the use of raw sql queries simpler.

I believe its better to learn actual SQL than some DTO abstractions. When things get complicated, you use SQL to solve it.

It is NOT ready for production yet.

Advantages

  • There is no use of DTO's of any kind
  • Use of raw sql queries (learn SQL instead of

Usage

For now, you can use it by clonning this git repository (main branch) and add it as a new project in your solution.

After that, you can call the methods of RawSqlLib. You will need a delegate function to map the result of the sql query. See example below:

public class ExampleRepository
    {
        private readonly RawSql _sqlExecutor;

        public ExampleRepository()
        {
            _sqlExecutor = new RawSql(EnvironmentVariables.Database.Core.ConnectionString);
        }

        public async Task<Example?> GetById(int _id, CancellationToken cancellationToken)
        {
            var sql = $"select * from example where id = @id";
            _sqlExecutor.AddParam("@id", System.Data.SqlDbType.Int, _id);

            var retorno = await _sqlExecutor.QueryAsync(sql, ExampleMapping, cancellationToken);
            return retorno;
        }

        // Executes a batch of non-queryable (non-SELECTs) operations
        // Only return true if ALL operations are succesfull
        public async Task<bool> Transaction(string[] sql, CancellationToken cancellationToken)
        {
            bool success = await sql.TransactionAsync(new string[] { "INSERT INTO Example VALUES ('A Value');", "INSERT INTO AnotheTable VALUES ( 'Another Value');" }, CancellationToken.None);
            return success;
        }

        // Getting id of an inserted record
        public async Task<int> Transaction(string[] sql, CancellationToken cancellationToken)
        {
            int? new_id = await sql.ExecuteScalarAsync<int>("INSERT INTO Example OUTPUT INSERTED.id VALUES ('B Value')", CancellationToken.None);
            if (new_id is null)
            {
                // Logging message indicating that the record was not inserted
            }
            return new_id;
        }

        private Example ExampleMapping(SqlDataReader reader)
        {
            return new Example
            {
                Id = reader.ObterValor<int>(0),
                Name = reader.ObterValor<string>(1) ?? "",
                Email = reader.ObterValor<string>(2) ?? "",
            };
        }
    }

In the example code, there is an Example entity that represents a table in the database with the fields id, name and email, in that order. The mapping of the table elements to the Example class is done in the ExampleMapping() function. This function is passed as a argument (delegate) to the QueryAsync() method. The mapping of the delegate function uses a implemented extension of the SqlDataReader class that gets the value of the database field. This extension needs the type of the database field.

TODO

  • [] Translate all method names to english
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.1.0 194 6/3/2024
1.0.0 82 5/16/2024