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