QueryExpressionBuilder

Library for building Predicate Expression from query models
git clone git://185.198.27.126/QueryExpressionBuilder.git
Log | Files | Refs | README

commit 27586ec9fc92f058715c392254a100c1d5f2dc02
parent df84d368bdb3407f7d31829df01da34426bb78f9
Author: novickii.sergei.nure@gmail.com <novickii.sergei.nure@gmail.com>
Date:   Fri, 26 Apr 2024 19:16:50 +0300

Add licence

Diffstat:
MQueryExpressionBuilder/QueryExpressionBuilder.csproj | 1+
MREADME.md | 8++++++--
2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/QueryExpressionBuilder/QueryExpressionBuilder.csproj b/QueryExpressionBuilder/QueryExpressionBuilder.csproj @@ -4,6 +4,7 @@ <TargetFramework>net8.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> + <GenerateDocumentationFile>True</GenerateDocumentationFile> </PropertyGroup> </Project> diff --git a/README.md b/README.md @@ -104,6 +104,8 @@ SELECT "u"."Id", "u"."Amount", "u"."BirthDate", "u"."Email", "u"."Name", "u"."Pa FROM "Users" AS "u" WHERE instr("u"."Name", 'M') > 0 AND "u"."BirthDate" >= '2000-01-01 00:00:00' AND "u"."BirthDate" <= '2040-01-01 00:00:00' AND "u"."Amount" >= 1000 ``` +## License +This project is distributed under the [MIT](https://opensource.org/licenses/MIT) license, which allows free use, modification, and distribution of the code in accordance with the terms of the MIT license. <br><br><br> # QueryExpressionBuilder @@ -212,4 +214,6 @@ https://localhost:7001/GetUsers?Name=M&FromBirthDate=2000-01-01&ToBirthDate=2040 SELECT "u"."Id", "u"."Amount", "u"."BirthDate", "u"."Email", "u"."Name", "u"."PasswodHash", "u"."RegistrationDate", "u"."Surname" FROM "Users" AS "u" WHERE instr("u"."Name", 'M') > 0 AND "u"."BirthDate" >= '2000-01-01 00:00:00' AND "u"."BirthDate" <= '2040-01-01 00:00:00' AND "u"."Amount" >= 1000 -``` -\ No newline at end of file +``` +## Лицензия +Этот проект распространяется под лицензией [MIT](https://opensource.org/licenses/MIT), которая разрешает свободное использование, изменение и распространение кода в соответствии с условиями лицензии MIT. +\ No newline at end of file