mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 12:28:15 +08:00
- 修复 Oracle IncludeMany IN 元素超过 500 数目的问题;#843
This commit is contained in:
@ -56,6 +56,17 @@ namespace FreeSql
|
||||
{
|
||||
internal static ThreadLocal<ExpressionCallContext> expContext = new ThreadLocal<ExpressionCallContext>();
|
||||
|
||||
//public static bool BitAnd<TEnum>(TEnum enum1, [RawValue] TEnum enum2)
|
||||
//{
|
||||
// expContext.Value.Result = $"({expContext.Value.ParsedContent["enum1"]} & {Convert.ToInt32(enum2)}) = {Convert.ToInt32(enum2)}";
|
||||
// return false;
|
||||
//}
|
||||
//public static bool BitOr<TEnum>(TEnum enum1, [RawValue] TEnum enum2)
|
||||
//{
|
||||
// expContext.Value.Result = $"({expContext.Value.ParsedContent["enum1"]} | {Convert.ToInt32(enum2)}) = {Convert.ToInt32(enum2)}";
|
||||
// return false;
|
||||
//}
|
||||
|
||||
#region SqlServer/PostgreSQL over
|
||||
/// <summary>
|
||||
/// rank() over(order by ...)
|
||||
|
Reference in New Issue
Block a user