CSQLQueryExpress 1.1.8

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

// Install CSQLQueryExpress as a Cake Tool
#tool nuget:?package=CSQLQueryExpress&version=1.1.8

CSQLQueryExpress

CSQLQueryExpress is a C# library designed to compile TSQL code, providing developers with the utmost flexibility to write expressions in C# that closely resemble TSQL syntax.

Note that while CSQLQueryExpress handles the compilation of TSQL code, the execution is delegated to any ORM such as Dapper.

Please note that this library is intended exclusively for use in non-production environments.

Example

Here's a simple example to demonstrate how to use CSQLQueryExpress with Dapper:

using CSQLQueryExpress;
using Dapper;
using System.Data.SqlClient;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

class Program
{
    static void Main()
    {
        SQLQuerySelect<Users> query = 
            new SQLQuery()
                .From<Users>()
                .Where(u => u.Age > 30)
                .Select(u => u.All());

        var tSqlQuery = query.Compile();

        var statement = tSqlQuery.Statement;
        var parameters = tSqlQuery.Parameters.ToDictionary(p => p.Name, p => p.Value);

        using (var connection = new SqlConnection("YourConnectionString"))
        {
            connection.Open();

            var result = connection.Query<Users>(statement, parameters);
            foreach (var user in result)
            {
                Console.WriteLine($"{user.UserID} - {user.FirstName} - {user.LastName} - {user.Age}");
            }
        }
    }
}

[Table("Users", Schema = "dbo")]
public class Users : ISQLQueryEntity
{
    [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
    [Column("EmployeeID")]
    public int UserID { get; set; }
    
    [Required]
    [Column("FirstName")]
    public string FirstName { get; set; }
    
    [Required]
    [Column("LastName")]
    public string LastName { get; set; }
    	
    [Column("Age")]
    public int Age { get; set; }
}

TSQL

Some functions and statements supported by CSQLQueryExpress:

Scalar Functions:

  1. Mathematical Functions:

    • ABS: Returns the absolute value of a number.
    • CEILING: Returns the smallest integer greater than or equal to a number.
    • FLOOR: Returns the largest integer less than or equal to a number.
    • ROUND: Rounds a number to a specified number of decimal places.
    • SQRT: Returns the square root of a number.
  2. String Functions:

    • LEN: Returns the length of a string.
    • LOWER: Converts a string to lowercase.
    • UPPER: Converts a string to uppercase.
    • SUBSTRING: Extracts a portion of a string.
    • REPLACE: Replaces all occurrences of a substring within a string.
    • LTRIM / RTRIM: Removes leading or trailing spaces from a string.
    • LEFT / RIGHT: Returns characters from the left or right part of a string.
  3. Date and Time Functions:

    • DATEADD: Adds an interval to a date.
    • DATEDIFF: Returns the difference between two dates.
    • DATEPART: Returns a specified part of a date as an integer.
    • CONVERT: Converts a date to a specified format.
  4. Logical Functions:

    • ISNULL: Replaces NULL with a specified replacement value.
  5. Aggregate Functions:

    • SUM: Calculates the sum of a set of values.
    • AVG: Calculates the average of a set of values.
    • MIN / MAX: Returns the minimum or maximum value in a set of values.
    • COUNT: Returns the number of values in a set.

Statements and Constructs:

  1. EXISTS: Checks if a subquery returns any rows.

  2. BETWEEN: Selects values within a given range.

  3. Common Table Expressions (CTEs)

  4. Subqueries

  5. FOR XML: Returns the query result as XML.

  6. CASE: Returns different values based on conditional logic.

  7. OUTPUT with INSERTED and DELETED: Returns the rows affected by an INSERT, UPDATE, or DELETE statement.

    • INSERTED: Holds the new values being inserted or updated.
    • DELETED: Holds the old values being deleted or updated.

Do you have a comprehensive list of examples?

CSQLQueryExpress has a comprehensive test suite in the test project.

CSQLQueryExpress.Scaffolding

CSQLQueryExpress.Scaffolding is a C# NuGet library designed to compile the data model for CSQLQueryExpress from the database schema.

Note

Compile and verify generated statements from the library: Compile and test the TSQL statements generated by the library. The library translates the query you write respecting the expressions used. Some expressions can be used in different contexts, the library is not able to discern the intention of the writer, therefore the control both in the writing and verification phases lies with the developer.

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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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.8 72 6/14/2024
1.1.7 70 6/13/2024
1.1.6 75 6/12/2024
1.1.5 59 6/12/2024
1.1.4 59 6/11/2024
1.1.3 56 6/11/2024
1.1.2 64 6/10/2024
1.1.1 63 6/10/2024
1.1.0 61 6/10/2024

Please note that this library is intended exclusively for use in non-production environments.