DotNetBrightener.LinQToSqlBuilder 2025.0.2

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

// Install DotNetBrightener.LinQToSqlBuilder as a Cake Tool
#tool nuget:?package=DotNetBrightener.LinQToSqlBuilder&version=2025.0.2                

LinQ to SQL Builder - small .NET library supports creating SQL queries and commands in a strongly typed fashion.

© 2024 DotNet Brightener

NuGet Version

Inspiration

I am a big fan of ORM, and I have been using Entity Framework since the first day I started my career as a .Net Developer back in 2009.

Some time ago I woked on a project and needed to deal with 2 databases at the same time. For some reasons, I am not supposed to use Entity Framework for the second database which is dynamically configured in a tenant-based setting at runtime. So I have to choose either to come back to ADO.Net and making queries using string concatenation and SqlCommand, or I to come up with something that is friendly with Entity Framework usage, which is using Linq lambda expression to describe the query or command we want to process with the database.

Searching through the internet, I found a few repositories that seem to fit my needs, but I still reluctant because they all seem to miss something. For instance, the open-source library from https://github.com/mladenb/sql-query-builder does most of the operations that we need for basic usages, but the queries and commands are built on top of strings.

Finally, I found the open-source repository at https://github.com/DomanyDusan/lambda-sql-builder and it's very close to what I am looking for. However, the author has not continued supporting the project and its last commit was 7 years prior to the time I started developed this library. So I decided to reference his code and make a modified version of what he had done, and adding support for INSERT, UPDATE, DELETE instead of only SELECT queries as in the original version.

This project is not meant to replace or to cover the entire SQL world, the purpose of this is to provide the most basic and commonly used operations like CRUD (Create / Read / Update / Delete) to the database from the application, which I believe it covers 70% the simple data access operations in most applications.

Continuing the spirit of original library, this library can be used to help you generate the query and parameters that you can use in ADO.Net with SqlCommand or you can use with Dapper to have a simple mapping back to your entities.

Huge thanks and credits to the original author DomanyDusan and his tool. And I hope you guys, the developers, find my modified library helpful for your works/projects. All feedbacks and suggestions are welcome so that I can make this tool better.

Installation

Install using Package Reference

dotnet add [YOUR_PROJECT_NAME] package DotNetBrightener.LinQToSqlBuilder

You can optionally specified version by using --version [version] parameter

Usage

Simple Select

This basic example queries the database for 10 User and order them by their registration date using Dapper:

var query = SqlBuilder.Select<User>()
                      .OrderBy(_ => _.RegistrationDate)
                      .Take(10);
                      
var results = Connection.Query<User>(query.CommandText, query.CommandParameters);

As you can see the CommandText property will return the SQL string itself, while the CommandParameters property refers to a dictionary of SQL parameters.

Select query with Join

The below example performs a query to the User table, and join it with UserGroup table to returns a many to many relationship mapping specified using Dapper mapping API

var query = SqlBuilder.Select<User>()
                    //.Where(user => user.Email == email)
                      .Join<UserUserGroup>((@user, @group) => user.Id == group.UserId)
                      .Join<UserGroup>((group,     g) => group.UserGroupId == g.Id)
                      .Where(group => group.Id == groupId);

var result = new Dictionary<long, User>();
var results = Connection.Query<User, UserGroup, User>(query.CommandText,
                                                        (user, group) =>
                                                        {
                                                            if (!result.ContainsKey(user.Id))
                                                            {
                                                                user.Groups = new List<UserGroup>();
                                                                result.Add(user.Id, user);
                                                            }

                                                            result[user.Id].Groups.Add(group);
                                                            return user;
                                                        },
                                                        query.CommandParameters,
                                                        splitOn: "UserId,UserGroupId")
                        .ToList();
Insert single record

The example below will generate an insert command with one record.

var query = SqlBuilder.Insert<UserGroup>(_ => new UserGroup
            {
                CreatedBy   = "TestSystem",
                CreatedDate = DateTimeOffset.Now,
                Description = "Created from Test System",
                Name        = "TestUserGroup",
                IsDeleted   = false
            });

var results = Connection.Execute(query.CommandText, query.CommandParameters);
Insert multiple records

The example below will generate an insert command with multiple records.

var query = SqlBuilder.InsertMany<UserGroup>(_ => new []
            {
                new UserGroup
                {
                    CreatedBy   = "TestSystem",
                    CreatedDate = DateTimeOffset.Now,
                    Description = "Created from Test System",
                    Name        = "TestUserGroup",
                    IsDeleted   = false
                },

                new UserGroup
                {
                    CreatedBy   = "TestSystem",
                    CreatedDate = DateTimeOffset.Now,
                    Description = "Created from Test System",
                    Name        = "TestUserGroup2",
                    IsDeleted   = false
                },

                new UserGroup
                {
                    CreatedBy   = "TestSystem",
                    CreatedDate = DateTimeOffset.Now,
                    Description = "Created from Test System",
                    Name        = "TestUserGroup3",
                    IsDeleted   = false
                }
            });

var results = Connection.Execute(query.CommandText, query.CommandParameters);
Insert by copying from another table

Sometimes we need to copy a bunch of records from one table to another. For instance, if we have an order that contains few products, and the quantity of the products are being updated before the order gets finalized. So we need to keep the inventory history records of all products that are being updated from time to time. Using Entity Framework, we could have loaded all inventory records of the specified products, then create a copied object and insert them to the inventory history. The more products you have, the slower performance you will suffer because you will have to deal with the data that are in memory versus the data that are being processed by other request(s).

var query = SqlBuilder.InsertFrom<Inventory, InventoryHistory>(inventory => new InventoryHistory()
                                   {
                                       CreatedBy        = "Cloning System",
                                       CreatedDate      = DateTimeOffset.Now,
                                       StockQuantity    = inventory.StockQuantity,
                                       ReservedQuantity = inventory.ReservedQuantity,
                                       IsDeleted        = inventory.IsDeleted,
                                       InventoryId      = inventory.Id,
                                       ProductId        = inventory.ProductId
                                   })
                                  .WhereIsIn(inventory => inventory.ProductId, new long[] { /*... obmited values, describes the list of product ids */ });

Assert.AreEqual("INSERT INTO [dbo].[InventoryHistory] ([CreatedBy], [CreatedDate], [StockQuantity], [ReservedQuantity], [IsDeleted], [InventoryId], [ProductId]) " +
                "SELECT " +
                "@Param1 as [CreatedBy], " +
                "@Param2 as [CreatedDate], " +
                "[dbo].[Inventory].[StockQuantity] as [StockQuantity], " +
                "[dbo].[Inventory].[ReservedQuantity] as [ReservedQuantity], " +
                "[dbo].[Inventory].[IsDeleted] as [IsDeleted], " +
                "[dbo].[Inventory].[Id] as [InventoryId] " +
                "[dbo].[Inventory].[ProductId] as [ProductId] " +
                "FROM [dbo].[Inventory] " +
                "WHERE [dbo].[Inventory].[ProductId] IS IN @Param3",
                query.CommandText);
Update a record

The example below will generate a command to update the User table, provides 3 properties to be updated, where user.Id equals the given value userId

var query = SqlBuilder.Update<User>(_ => new User
                                   {
                                       Email              = _.Email.Replace("@domain1.com", "@domain2.com"),
                                       LastChangePassword = DateTimeOffset.Now,
                                       FailedLogIns       = _.FailedLogIns + 1
                                   })
                    .Where(user => user.Id == userId);

var result = Connection.Execute(query.CommandText, query.CommandParameters);
// this will return the affected rows of the query
Delete a record / multiple records by condition

The example below will generate a command to delete from User table where the user.Email equals the specified userEmail value:

string userEmail = "query_email@domain1.com";

var query = SqlBuilder.Delete<User>()
                    .Where(user => user.Email == userEmail);
                    // .Where(user => user.Email.Contains("part_of_email_to_search"));

var result = Connection.Execute(query.CommandText, query.CommandParameters);

Reference

https://github.com/DomanyDusan/lambda-sql-builder

https://github.com/mladenb/sql-query-builder

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net9.0

    • 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
2025.0.2 66 1/21/2025
2025.0.2-preview-278 53 1/21/2025
2025.0.2-preview-277 84 12/16/2024
2025.0.1-rc-243301701 85 11/25/2024
2024.0.14.6 109 11/25/2024
2024.0.14.6-rc-243031001 77 10/29/2024
2024.0.14.6-rc-243030701 70 10/29/2024
2024.0.14.6-rc-242840501 85 10/10/2024
2024.0.14.6-rc-242820305 72 10/8/2024
2024.0.14.6-rc-242771401 68 10/3/2024
2024.0.14.6-rc-242770501 85 10/3/2024
2024.0.14.6-rc-242770201 76 10/3/2024
2024.0.14.6-rc-242761801 75 10/2/2024
2024.0.14.6-rc-242761601 77 10/2/2024
2024.0.14.6-rc-242761501 77 10/2/2024
2024.0.14.6-rc-242761401 71 10/2/2024
2024.0.14.6-rc-242760701 76 10/2/2024
2024.0.14.6-rc-242751002 76 10/1/2024
2024.0.14.6-rc-242750901 75 10/1/2024
2024.0.14.6-rc-242750502 89 10/1/2024
2024.0.14.6-rc-242750201 77 10/1/2024
2024.0.14.6-rc-242741501 77 9/30/2024
2024.0.14.6-rc-242730701 75 9/29/2024
2024.0.14.6-preview-2730501 93 9/29/2024
2024.0.14.6-preview-2701501 91 9/26/2024
2024.0.14.6-preview-2620901 86 9/18/2024
2024.0.14.6-preview-2570701 86 9/13/2024
2024.0.14.6-preview-2510703 105 9/7/2024
2024.0.14.6-preview-2480501 93 9/4/2024
2024.0.14.6-preview-2430401 93 8/30/2024
2024.0.14.6-preview-242730701 75 9/29/2024
2024.0.14.6-preview-2421703 87 8/29/2024
2024.0.14.6-preview-2421701 100 8/29/2024
2024.0.14.6-preview-2420901 88 8/29/2024
2024.0.14.6-preview-2390101 101 8/26/2024
2024.0.14.6-preview-2381603 106 8/25/2024
2024.0.14.6-preview-2341601 112 8/21/2024
2024.0.14.6-preview-2321602 108 8/20/2024
2024.0.14.6-preview-2190801 71 8/6/2024
2024.0.14.6-preview-2041501 95 7/22/2024
2024.0.14.6-preview-1920603 101 7/10/2024
2024.0.14.6-preview-1920301 94 7/10/2024
2024.0.14.6-preview-1911302 95 7/9/2024
2024.0.14.6-preview-1901001 93 7/8/2024
2024.0.14.6-preview-1900901 98 7/8/2024
2024.0.14.6-preview-1900801 93 7/8/2024
2024.0.14.6-preview-1860304 102 7/4/2024
2024.0.14.5 117 7/1/2024
2024.0.14.5-preview-1811601 103 6/29/2024
2024.0.14.5-preview-1810501 97 6/29/2024
2024.0.14.5-preview-180132 107 6/28/2024
2024.0.14.5-preview-180131 100 6/28/2024
2024.0.14.5-preview-180121 92 6/28/2024
2024.0.14.4 121 6/27/2024
2024.0.14.4-preview-7 98 6/27/2024
2024.0.14.3 113 6/21/2024
2024.0.14.1 114 6/6/2024
2024.0.14.1-preview 90 6/6/2024
2024.0.14-preview-1 91 6/6/2024
2024.0.13.8-preview 89 6/6/2024
2024.0.13.1-preview-0146 91 6/6/2024
2024.0.12.15803-preview-03 100 6/6/2024
2024.0.12.15608 119 6/4/2024
2024.0.12.15515 132 6/3/2024
2024.0.12.15220 106 5/31/2024
2024.0.12.15220-alpha31-240... 89 5/31/2024
2024.0.12.14911 115 5/28/2024
2024.0.12.14910-alpha28-240... 89 5/28/2024
2024.0.12.14823 121 5/27/2024
2024.0.12.14522-alpha7-2405... 113 5/24/2024
2024.0.12.14514-alpha6-2405... 109 5/24/2024
2024.0.12.14511 121 5/24/2024
2024.0.12.14314 121 5/22/2024
2024.0.12.14114 117 5/20/2024
2024.0.12.12815 129 5/7/2024
2024.0.12.12814 124 5/7/2024
2024.0.12.12721 129 5/6/2024
2024.0.12.12702 138 5/5/2024
2024.0.12.12622 135 5/5/2024
2024.0.12.12514 127 5/4/2024
2024.0.12.12512 114 5/4/2024
2024.0.12.12510 111 5/4/2024
2024.0.12.12420 91 5/3/2024
2024.0.12.12319 82 5/2/2024
2024.0.12.12319-rc-2405021801 71 5/2/2024
2024.0.12.12318 81 5/2/2024
2024.0.12.12215 113 5/1/2024
2024.0.12.12011 103 4/29/2024