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:
Sakura Akeno Isayeki 2025-04-28 14:05:29 +02:00
parent 0021f9884d
commit 8a75b1fdc5
No known key found for this signature in database
GPG key ID: BAB781B71FD2E7E6
19 changed files with 434 additions and 403 deletions

View file

@ -23,6 +23,7 @@ using System.Linq;
using System.Text;
using MySql.Data.MySqlClient;
using Terraria;
using TShockAPI.DB.Queries;
namespace TShockAPI.DB
{