mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update HGDB
This commit is contained in:
parent
8705787656
commit
2ab1210c78
@ -133,6 +133,20 @@ namespace SqlSugar.HG
|
||||
}
|
||||
public class HGMethod : DefaultDbMethod, IDbMethods
|
||||
{
|
||||
|
||||
public override string GetDateString(string dateValue, string formatString)
|
||||
{
|
||||
if (!(formatString?.Contains("24") == true))
|
||||
{
|
||||
formatString = formatString.Replace("HH", "hh24");
|
||||
if (!(formatString?.Contains("24") == true))
|
||||
{
|
||||
formatString = formatString.Replace("hh", "hh24");
|
||||
}
|
||||
}
|
||||
formatString = formatString.Replace("mm", "mi");
|
||||
return $"to_char({dateValue},'{formatString}') ";
|
||||
}
|
||||
public override string CharIndex(MethodCallExpressionModel model)
|
||||
{
|
||||
return string.Format(" (strpos ({1},{0})-1)", model.Args[0].MemberName, model.Args[1].MemberName);
|
||||
|
Loading…
Reference in New Issue
Block a user