2026-02-24 20:44:16 +00:00
|
|
|
|
namespace Sozsoft.SqlQueryManager;
|
|
|
|
|
|
|
|
|
|
|
|
public static class Prefix
|
|
|
|
|
|
{
|
2026-03-02 11:25:00 +00:00
|
|
|
|
public static string MenuPrefix { get; set; } = "Adm";
|
2026-02-24 20:44:16 +00:00
|
|
|
|
public static string HostPrefix { get; set; } = "T";
|
|
|
|
|
|
public static string? DbSchema { get; set; } = null;
|
|
|
|
|
|
|
|
|
|
|
|
public const string ConnectionStringName = "SqlQueryManager";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static class TablePrefix
|
|
|
|
|
|
{
|
|
|
|
|
|
public static string ByName(string tableName)
|
|
|
|
|
|
{
|
|
|
|
|
|
return $"{Prefix.MenuPrefix}_{Prefix.HostPrefix}_{tableName}";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|