You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<Description>SQLWrapper makes it easier to create code wrappers for SQL queries. It's a powerful tool that helps speed up development by reducing the need for manual coding. It works with databases various SQL database (MySQL, MariaDB, ...), checking the syntax and performance of SQL queries before you execute them.
19
-
20
-
It's important to note that SQLWrapper isn't like other tools that map objects to database tables (ORMs). Instead, it directly generates code from your SQL queries and database structure, which performs better than tools like LINQ, EntityFramework, dapper, ... and doesn't have the same limitations.
21
-
22
-
One feature is that it can look at your database's structure to check if your SQL queries are correct, and it can create an XML file listing all the data your queries need and return. Then, you can use XSLT templates to turn that XML into code in languages like C#, and more.
23
-
24
-
Overall, DAIKOZ.SQLWrapper is a handy tool for making SQL code easier to work with, saving time, and helping you write better code.</Description>
20
+
<Description>SQLWrapper makes it easier to create code wrappers for SQL queries. It's a
21
+
powerful tool that helps speed up development by reducing the need for manual coding. It
22
+
works with databases various SQL database (MySQL, MariaDB, ...), checking the syntax and
23
+
performance of SQL queries before you execute them.
24
+
25
+
It's important to note that SQLWrapper isn't like other tools that map objects to
26
+
database tables (ORMs). Instead, it directly generates code from your SQL queries and
27
+
database structure, which performs better than tools like LINQ, EntityFramework, dapper,
28
+
... and doesn't have the same limitations.
29
+
30
+
One feature is that it can look at your database's structure to check if your SQL
31
+
queries are correct, and it can create an XML file listing all the data your queries
32
+
need and return. Then, you can use XSLT templates to turn that XML into code in
33
+
languages like C#, and more.
34
+
35
+
Overall, DAIKOZ.SQLWrapper is a handy tool for making SQL code easier to work with,
36
+
saving time, and helping you write better code.</Description>
25
37
<Copyright>Copyright (c) DAIKOZ. All rights reserved.</Copyright>
// This file is used by Code Analysis to maintain SuppressMessage
2
+
// attributes that are applied to this project.
3
+
// Project-level suppressions either have no target or are given
4
+
// a specific target and scoped to a namespace, type, member, etc.
5
+
6
+
usingSystem.Diagnostics.CodeAnalysis;
7
+
8
+
[assembly:SuppressMessage("Performance","CA1812:Avoid uninstantiated internal classes",Justification="Use for XML serialisation",Scope="type",Target="~T:Daikoz.SQLWrapper.Schema")]
9
+
[assembly:SuppressMessage("Performance","CA1812:Avoid uninstantiated internal classes",Justification="Use for XML serialisation",Scope="type",Target="~T:Daikoz.SQLWrapper.Database")]
10
+
[assembly:SuppressMessage("Performance","CA1812:Avoid uninstantiated internal classes",Justification="Use for XML serialisation",Scope="type",Target="~T:Daikoz.SQLWrapper.SQL")]
11
+
[assembly:SuppressMessage("Performance","CA1812:Avoid uninstantiated internal classes",Justification="Use for XML serialisation",Scope="type",Target="~T:Daikoz.SQLWrapper.Wrapper")]
12
+
[assembly:SuppressMessage("Performance","CA1812:Avoid uninstantiated internal classes",Justification="Use for XML serialisation",Scope="type",Target="~T:Daikoz.SQLWrapper.SQLWrapperConfig")]
13
+
14
+
[assembly:SuppressMessage("Usage","CA2227:Collection properties should be read only",Justification="Use by target",Scope="member",Target="~P:Daikoz.SQLWrapper.SQLWrapperTask.GeneratedSources")]
0 commit comments