NarsilWorks.Query
1.0.0
See the version list below for details.
dotnet add package NarsilWorks.Query --version 1.0.0
NuGet\Install-Package NarsilWorks.Query -Version 1.0.0
<PackageReference Include="NarsilWorks.Query" Version="1.0.0" />
paket add NarsilWorks.Query --version 1.0.0
#r "nuget: NarsilWorks.Query, 1.0.0"
// Install NarsilWorks.Query as a Cake Addin #addin nuget:?package=NarsilWorks.Query&version=1.0.0 // Install NarsilWorks.Query as a Cake Tool #tool nuget:?package=NarsilWorks.Query&version=1.0.0
How to use NarsilWorks Query
To use Query, you need to define a record or a class that represents the table in the database that you plan to manipulate.
For example:
A table we call tcoUsers
+-------------------------------+
|Column Name|Type |Size|Null |
+-----------+--------+----+---- +
|UserID |varchar | 40|false |
|Fullname |varchar |100|false |
|Age |smallint| 8|false |
|BirthDate |datetime| |false |
+-------------------------------+
Which is represented by a C# record
:
public record Users {
public string UserID {get;set;}
public string Name {get;set;} // We deliberately did not put the matching name here
public short Age {get;set;}
public DateTime BirthDate {get;set;}
}
The record Users
needs to be initialized and filled with values in order to persist in the database. The problem with this is that it wont find any table in the database, because there's no hint provided. To provide hint to Query, we need to put an attribute to the record, including its fields. Putting an attribute to the fields, especially for strings, will allow Query to validate the input fields.
[QueryObjectAttribute(DataName = "tcoUsers")]
public record Users {
[QueryColumnAttribute(Type=System.Data.SqlDbType.VarChar, Size = 40)]
public string UserID {get;set;}
[QueryColumnAttribute(Name = "FullName" Type=System.Data.SqlDbType.VarChar, Size = 40)]
public string Name {get;set;}
public short Age {get;set;}
public DateTime BirthDate {get;set;}
}
The record Users
now has an attribute of QueryObjectAttribute
set with DataName
to "tcoUsers"
, which is the table to persist to. The field UserID
was added with a QueryColumnAttribute
"Type"
to indicate that this is a varchar
column, with a size of 40
. The Name
field also gets a QueryColumnAttribute
as UserID
, but with a Name
attribute set to "FullName"
, which is the actual column name reserved to it.
To use in query generation:
// Create user with the following data
User data = new User{
UserID = "admin",
Name = "Administrator",
Age = 100,
BirthDate = new DateTime(1923,07,19)
};
// Create a Query object with a User type
// If the generation is successful, the output
// sql will contain an SQL query string, the args will
// contain parameter values
string sql; object[] args; Exception err;
Query<User> q = new();
(sql, args, err) = q.Insert(data);
if (err != null) {
throw err;
}
// Output:
// sql: INSERT INTO [tcoUsers] (UserID, FullName, Age, BirthDate) VALUES (@p1, @p2, @p3, @p4);
// args: Array of objects that contains: ["admin", "Administrator", 100, "1923/07/19 00:00:00"]
You can then put this in an SqlCommand
class, with the parameters added with AddWithValue
via a for i
loop.
using (SqlConnection conn = new SqlConneciton(<ConnectionString>)) {
try {
conn.Open();
SqlCommand cmd = new SqlCommand () {
Connection = conn,
};
User data = new User{
UserID = "admin",
Name = "Administrator",
Age = 100,
BirthDate = new DateTime(1923,07,19)
};
string sql; object[] args; Exception err;
Query<User> q = new();
(sql, args, err) = q.Insert(data);
if (err != null) {
throw err;
}
cmd.CommandText = sql;
cmd.Parameters.Clear();
for (int i = 0; i < args.Length; i++){
cmd.Parameters.AddWithValue("@p" + (i + 1).ToString(), args[i]);
}
catch (Exception ex) {
throw ex;
} finally {
if (conn.State != System.Data.ConnectionState.Closed) {
conn.Close();
}
}
Note: The sample code is not tested on an actual program
Using Query gives you the control of streamlining your query, without strenuous filling all the table columns with the value defined by fields. The full documentation will be written next.
Contact me at narsilworks@gmail.com
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 is compatible. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
-
.NETCoreApp 2.0
- System.Data.Common (>= 4.3.0)
- System.Data.SqlClient (>= 4.8.5)
- System.ValueTuple (>= 4.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Initial release.