CSQLQueryExpress 1.2.1
See the version list below for details.
dotnet add package CSQLQueryExpress --version 1.2.1
NuGet\Install-Package CSQLQueryExpress -Version 1.2.1
<PackageReference Include="CSQLQueryExpress" Version="1.2.1" />
paket add CSQLQueryExpress --version 1.2.1
#r "nuget: CSQLQueryExpress, 1.2.1"
// Install CSQLQueryExpress as a Cake Addin #addin nuget:?package=CSQLQueryExpress&version=1.2.1 // Install CSQLQueryExpress as a Cake Tool #tool nuget:?package=CSQLQueryExpress&version=1.2.1
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.
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:
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.
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.
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.
Logical Functions:
ISNULL
: Replaces NULL with a specified replacement value.
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:
EXISTS
: Checks if a subquery returns any rows.BETWEEN
: Selects values within a given range.Common Table Expressions (CTEs)
Subqueries
FOR XML
: Returns the query result as XML.CASE
: Returns different values based on conditional logic.OUTPUT
withINSERTED
andDELETED
: Returns the rows affected by anINSERT
,UPDATE
, orDELETE
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 | Versions 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. |
-
.NETStandard 2.0
- System.ComponentModel.Annotations (>= 4.7.0)
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.3.4 | 372 | 8/8/2024 |
1.3.3 | 65 | 7/30/2024 |
1.3.1 | 108 | 7/18/2024 |
1.3.0 | 88 | 7/11/2024 |
1.2.6 | 94 | 7/10/2024 |
1.2.5 | 106 | 7/9/2024 |
1.2.4 | 94 | 7/8/2024 |
1.2.3 | 107 | 7/7/2024 |
1.2.2 | 103 | 7/3/2024 |
1.2.1 | 91 | 7/2/2024 |
1.2.0 | 101 | 7/1/2024 |
1.1.8 | 108 | 6/14/2024 |
1.1.7 | 106 | 6/13/2024 |
1.1.6 | 109 | 6/12/2024 |
1.1.5 | 94 | 6/12/2024 |
1.1.4 | 90 | 6/11/2024 |
1.1.3 | 88 | 6/11/2024 |
1.1.2 | 77 | 6/10/2024 |
1.1.1 | 93 | 6/10/2024 |
1.1.0 | 75 | 6/10/2024 |