ICWT.SQLBuilder 1.0.0

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

// Install ICWT.SQLBuilder as a Cake Tool
#tool nuget:?package=ICWT.SQLBuilder&version=1.0.0                

SQL Query Generator Library

Overview

The SQL Query Generator Library is a lightweight, flexible library designed to dynamically generate SQL queries for CRUD (Create, Read, Update, Delete) operations using reflection.

Features

  • Dynamic Query Generation: Automatically generates SQL queries based on your data models, reducing the need for manual SQL writing.
  • CRUD Operations: Supports generating SQL queries for Create (INSERT), Read (SELECT), Update (UPDATE), and Delete (DELETE) operations.
  • Reflection-Based: Utilizes reflection to inspect your data models, ensuring that queries are always in sync with your model definitions.

Usage

Installation

Add the library to your project by including the source files or by using a package manager (if available).

Example

public class User
{
    public int Id { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public string Email { get; set; }
}

var user = new User
{
    Id = 1,
    FirstName = "John",
    LastName = "Doe",
    Email = "john.doe@example.com"
};

ISqlQueryGenerator queryGenerator = new SqlQueryGenerator();

string insertQuery = queryGenerator.GenerateInsertQuery(user);
string selectQuery = queryGenerator.GenerateSelectQuery<User>();
string updateQuery = queryGenerator.GenerateUpdateQuery(user);
string deleteQuery = queryGenerator.GenerateDeleteQuery(user);

Console.WriteLine(insertQuery);
Console.WriteLine(selectQuery);
Console.WriteLine(updateQuery);
Console.WriteLine(deleteQuery);

Output

INSERT INTO User (Id, FirstName, LastName, Email) VALUES ('1', 'John', 'Doe', 'john.doe@example.com');
SELECT Id, FirstName, LastName, Email FROM User;
UPDATE User SET Id = '1', FirstName = 'John', LastName = 'Doe', Email = 'john.doe@example.com' WHERE Id = 1;
DELETE FROM User WHERE Id = 1;

Contributing

Contributions are welcome! Feel free to submit a pull request or open an issue to discuss potential improvements or bugs.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.
  • net8.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
1.0.0 124 8/23/2024