Synchronization code

This commit is contained in:
sunkaixuan 2023-07-10 18:30:42 +08:00
parent 25a5730aff
commit d50331a7b4

View File

@ -459,6 +459,10 @@ namespace SqlSugar
{
formatString = formatString.Replace("HHmm", "HHmi");
}
if (formatString.Contains("HH"))
{
formatString = formatString.Replace("HH", "hh24");
}
return $" to_char({dateValue},'{formatString}') ";
}
}