public static bool HasQualifier(this DbType dbType) => dbType.IsDate() || dbType.IsString();
public static string GetQualifier(this DbType dbType) => dbType.IsDate() ? SqlDateTimeOptions.DefaultLiteralPrefix : dbType.IsString() ? SqlStringOptions.DefaultLiteralPrefix : string.Empty;