refactor(db): Move DbQueryBuilders to separate namespace
Removes obsolete query builder interface and implementations. Introduces a new namespace for query-related classes to enhance organization. Updates various database managers to use the new query utilities, promoting code reuse and maintainability. Enhances query functionality, ensuring better consistency across the codebase.
This commit is contained in:
parent
0021f9884d
commit
8a75b1fdc5
19 changed files with 434 additions and 403 deletions
|
|
@ -24,9 +24,9 @@ namespace TShockAPI
|
|||
public static class StringExt
|
||||
{
|
||||
//Can't name it Format :(
|
||||
public static String SFormat(this String str, params object[] args)
|
||||
public static string SFormat(this string str, params object[] args)
|
||||
{
|
||||
return String.Format(str, args);
|
||||
return string.Format(str, args);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue