From e60d21ec184fb3b01fc3229bbd34cbc5ceb1b50a Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Sun, 29 Mar 2026 06:19:00 +0000
Subject: [PATCH 1/6] Initial plan
From 8b74ee2d01a832ec3cb8d467db9ae1dda45ac4e3 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Sun, 29 Mar 2026 06:26:51 +0000
Subject: [PATCH 2/6] Add implicit operator support in ExpressionPromoter and
tests
Agent-Logs-Url: https://github.com/zzzprojects/System.Linq.Dynamic.Core/sessions/82ed2f4e-0c76-407c-a330-d4043e96162f
Co-authored-by: StefH <249938+StefH@users.noreply.github.com>
---
.../Parser/ExpressionPromoter.cs | 17 +
.../coverage.opencover.xml | 18593 ++++++++++++++++
.../DynamicExpressionParserTests.cs | 49 +
3 files changed, 18659 insertions(+)
create mode 100644 test/System.Linq.Dynamic.Core.Tests.Net9/coverage.opencover.xml
diff --git a/src/System.Linq.Dynamic.Core/Parser/ExpressionPromoter.cs b/src/System.Linq.Dynamic.Core/Parser/ExpressionPromoter.cs
index 49731b24..57b3df38 100644
--- a/src/System.Linq.Dynamic.Core/Parser/ExpressionPromoter.cs
+++ b/src/System.Linq.Dynamic.Core/Parser/ExpressionPromoter.cs
@@ -1,5 +1,6 @@
using System.Linq.Expressions;
using System.Reflection;
+using System.Linq;
namespace System.Linq.Dynamic.Core.Parser;
@@ -135,6 +136,22 @@ public ExpressionPromoter(ParsingConfig config)
return sourceExpression;
}
+ // Check for implicit conversion operators (op_Implicit) from returnType to type.
+ // Look for op_Implicit on the source type or the target type.
+ var implicitOperator =
+ returnType.GetMethods(BindingFlags.Public | BindingFlags.Static)
+ .Where(m => m.Name == "op_Implicit" && m.ReturnType == type)
+ .FirstOrDefault(m => m.GetParameters().FirstOrDefault()?.ParameterType == returnType)
+ ??
+ type.GetMethods(BindingFlags.Public | BindingFlags.Static)
+ .Where(m => m.Name == "op_Implicit" && m.ReturnType == type)
+ .FirstOrDefault(m => m.GetParameters().FirstOrDefault()?.ParameterType == returnType);
+
+ if (implicitOperator != null)
+ {
+ return Expression.Convert(sourceExpression, type);
+ }
+
return null;
}
}
\ No newline at end of file
diff --git a/test/System.Linq.Dynamic.Core.Tests.Net9/coverage.opencover.xml b/test/System.Linq.Dynamic.Core.Tests.Net9/coverage.opencover.xml
new file mode 100644
index 00000000..1c813a45
--- /dev/null
+++ b/test/System.Linq.Dynamic.Core.Tests.Net9/coverage.opencover.xml
@@ -0,0 +1,18593 @@
+
+
+
+
+
+ Microsoft.EntityFrameworkCore.DynamicLinq.dll
+ 2026-03-29T06:25:55
+ Microsoft.EntityFrameworkCore.DynamicLinq
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::AllAsync(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::AllAsync(System.Linq.IQueryable,System.String,System.Threading.CancellationToken,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::AnyAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::AnyAsync(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::AnyAsync(System.Linq.IQueryable,System.String,System.Threading.CancellationToken,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Double> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::AverageAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Double> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::AverageAsync(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Double> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::AverageAsync(System.Linq.IQueryable,System.String,System.Threading.CancellationToken,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Int32> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::CountAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Int32> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::CountAsync(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Int32> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::CountAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::FirstAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::FirstAsync(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::FirstAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::FirstOrDefaultAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::FirstOrDefaultAsync(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::FirstOrDefaultAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LastAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LastAsync(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LastAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LastOrDefaultAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LastOrDefaultAsync(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LastOrDefaultAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Int64> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LongCountAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Int64> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LongCountAsync(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Int64> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LongCountAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::SingleOrDefaultAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::SingleOrDefaultAsync(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::SingleOrDefaultAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::SumAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::SumAsync(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::SumAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::ExecuteDynamicAsync(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<TResult> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::ExecuteAsync(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<TResult> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::ExecuteAsync(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::ExecuteDynamicAsync(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.Expression,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<TResult> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::ExecuteAsync(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.Expression,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Reflection.MethodInfo Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::GetMethod(System.String,System.Int32,System.Func`2<System.Reflection.MethodInfo,System.Boolean>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Reflection.MethodInfo Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::GetMethod(System.String,System.Type,System.Int32,System.Func`2<System.Reflection.MethodInfo,System.Boolean>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::CastSource(System.Linq.IQueryable,System.Reflection.MethodInfo)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<TResult> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::ExecuteAsync(Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider,System.Linq.Expressions.Expression,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::OptimizeExpression(System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions
+
+
+
+
+ System.String Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::ParseFormattableString(System.FormattableString,System.Object[]&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::AllInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::AllInterpolatedAsync(System.Linq.IQueryable,System.FormattableString,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::AnyInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::AnyInterpolatedAsync(System.Linq.IQueryable,System.FormattableString,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Double> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::AverageInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Double> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::AverageInterpolatedAsync(System.Linq.IQueryable,System.FormattableString,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Int32> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::CountInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Int32> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::CountInterpolatedAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::FirstInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::FirstInterpolatedAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::FirstOrDefaultInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::FirstOrDefaultInterpolatedAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::LastInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::LastInterpolatedAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::LastOrDefaultInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::LastOrDefaultInterpolatedAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Int64> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::LongCountInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Int64> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::LongCountInterpolatedAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::SingleOrDefaultInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::SingleOrDefaultInterpolatedAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::SumInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::SumInterpolatedAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.EmptyArray`1
+
+
+
+
+ System.Void System.EmptyArray`1::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+ System.StringExtensions
+
+
+
+
+ System.Boolean System.StringExtensions::IsNullOrWhiteSpace(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Reflection.CustomIntrospectionExtensions
+
+
+
+
+ System.Type[] System.Reflection.CustomIntrospectionExtensions::GetGenericTypeArguments(System.Reflection.TypeInfo)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Reflection.CustomTypeBuilderExtensions
+
+
+
+
+ System.Type System.Reflection.CustomTypeBuilderExtensions::CreateType(System.Reflection.Emit.TypeBuilder)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Reflection.Emit.PropertyBuilder System.Reflection.CustomTypeBuilderExtensions::DefineProperty(System.Reflection.Emit.TypeBuilder,System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Reflection.CustomTypeBuilderExtensions::AsType(System.Reflection.Emit.TypeBuilder)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Reflection.CustomTypeBuilderExtensions::AsType(System.Reflection.Emit.GenericTypeParameterBuilder)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpressionExtensions
+
+
+
+
+ System.Type System.Linq.Expressions.LambdaExpressionExtensions::GetReturnType(System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Validation.Check
+
+
+
+
+ System.Object[] System.Linq.Dynamic.Core.Validation.Check::Args(System.Object[],System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ T System.Linq.Dynamic.Core.Validation.Check::Condition(T,System.Predicate`1<T>,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ T System.Linq.Dynamic.Core.Validation.Check::NotNull(T,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ T System.Linq.Dynamic.Core.Validation.Check::NotNull(T,System.String,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.IEnumerable`1<T> System.Linq.Dynamic.Core.Validation.Check::NotNullOrEmpty(System.Collections.Generic.IEnumerable`1<T>,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Validation.Check::NotEmpty(System.String,System.String)
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Validation.Check::NotNullOrEmpty(System.String,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Validation.Check::NotNullOrWhiteSpace(System.String,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.IEnumerable`1<T> System.Linq.Dynamic.Core.Validation.Check::HasNoNulls(System.Collections.Generic.IEnumerable`1<T>,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Validation.CoreStrings
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Validation.CoreStrings::ArgumentPropertyNull(System.String,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Validation.CoreStrings::ArgumentIsEmpty(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Validation.CoreStrings::CollectionArgumentIsEmpty(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Extensions.ListExtensions
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Extensions.ListExtensions::AddIfNotNull(System.Collections.Generic.IList`1<T>,T)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Extensions.TokenIdExtensions
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Extensions.TokenIdExtensions::IsEqualityOperator(System.Linq.Dynamic.Core.Tokenizer.TokenId)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Extensions.TokenIdExtensions::IsComparisonOperator(System.Linq.Dynamic.Core.Tokenizer.TokenId)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.dll
+ 2026-03-29T06:25:55
+ System.Linq.Dynamic.Core
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.EmptyArray`1
+
+
+
+
+ System.Void System.EmptyArray`1::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+ System.StringExtensions
+
+
+
+
+ System.Boolean System.StringExtensions::IsNullOrWhiteSpace(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Reflection.CustomIntrospectionExtensions
+
+
+
+
+ System.Type[] System.Reflection.CustomIntrospectionExtensions::GetGenericTypeArguments(System.Reflection.TypeInfo)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Reflection.CustomTypeBuilderExtensions
+
+
+
+
+ System.Type System.Reflection.CustomTypeBuilderExtensions::CreateType(System.Reflection.Emit.TypeBuilder)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Reflection.Emit.PropertyBuilder System.Reflection.CustomTypeBuilderExtensions::DefineProperty(System.Reflection.Emit.TypeBuilder,System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Reflection.CustomTypeBuilderExtensions::AsType(System.Reflection.Emit.TypeBuilder)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Reflection.CustomTypeBuilderExtensions::AsType(System.Reflection.Emit.GenericTypeParameterBuilder)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpressionExtensions
+
+
+
+
+ System.Type System.Linq.Expressions.LambdaExpressionExtensions::GetReturnType(System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.AssemblyBuilderFactory
+
+
+
+
+ System.Reflection.Emit.AssemblyBuilder System.Linq.Dynamic.Core.AssemblyBuilderFactory::DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DefaultAssemblyHelper
+
+
+
+
+ System.Reflection.Assembly[] System.Linq.Dynamic.Core.DefaultAssemblyHelper::GetAssemblies()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DefaultAssemblyHelper::.ctor(System.Linq.Dynamic.Core.ParsingConfig)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DefaultQueryableAnalyzer
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DefaultQueryableAnalyzer::SupportsLinqToObjects(System.Linq.IQueryable,System.Linq.IQueryProvider)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicClass
+
+
+
+
+ System.Collections.Generic.Dictionary`2<System.String,System.Object> System.Linq.Dynamic.Core.DynamicClass::get_Properties()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ T System.Linq.Dynamic.Core.DynamicClass::GetDynamicPropertyValue(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicClass::GetDynamicPropertyValue(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicClass::SetDynamicPropertyValue(System.String,T)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicClass::SetDynamicPropertyValue(System.String,System.Object)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicClass::get_System_Linq_Dynamic_Core_DynamicClass_Indexer(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicClass::set_System_Linq_Dynamic_Core_DynamicClass_Indexer(System.String,System.Object)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicClass::ContainsProperty(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.IEnumerable`1<System.String> System.Linq.Dynamic.Core.DynamicClass::GetDynamicMemberNames()
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicClass::TryGetMember(System.Dynamic.GetMemberBinder,System.Object&)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicClass::TrySetMember(System.Dynamic.SetMemberBinder,System.Object)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicClassFactory
+
+
+
+
+ System.Type System.Linq.Dynamic.Core.DynamicClassFactory::CreateGenericComparerType(System.Type,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Linq.Dynamic.Core.DynamicClassFactory::CreateType(System.Collections.Generic.IList`1<System.Linq.Dynamic.Core.DynamicProperty>,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicClass System.Linq.Dynamic.Core.DynamicClassFactory::CreateInstance(System.Collections.Generic.IList`1<System.Linq.Dynamic.Core.DynamicPropertyWithValue>,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Linq.Dynamic.Core.DynamicClassFactory::EmitType(System.Collections.Generic.IList`1<System.Linq.Dynamic.Core.DynamicProperty>,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicClassFactory::IsTypePubliclyAccessible(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicClassFactory::EmitEqualityOperators(System.Reflection.Emit.TypeBuilder,System.Reflection.Emit.MethodBuilder)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.DynamicClassFactory::GenerateKey(System.Collections.Generic.IEnumerable`1<System.Linq.Dynamic.Core.DynamicProperty>,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.DynamicClassFactory::Escape(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicClassFactory::ClearGeneratedTypes()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicClassFactory::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Collections.Generic.List`1<System.Object>> System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions::ToDynamicListAsync(System.Collections.IEnumerable,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Threading.Tasks.Task`1<System.Collections.Generic.List`1<T>> System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions::ToDynamicListAsync(System.Collections.IEnumerable,System.Threading.CancellationToken)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToDynamicArrayAsync>d__2
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToDynamicArrayAsync>d__2::MoveNext()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToDynamicArrayAsync>d__3
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToDynamicArrayAsync>d__3::MoveNext()
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToDynamicArrayAsync>d__4`1
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToDynamicArrayAsync>d__4`1::MoveNext()
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToDynamicListAsync>d__5
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToDynamicListAsync>d__5::MoveNext()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToListAsync>d__8`1
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToListAsync>d__8`1::MoveNext()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicEnumerableExtensions
+
+
+
+
+ System.Object[] System.Linq.Dynamic.Core.DynamicEnumerableExtensions::ToDynamicArray(System.Collections.IEnumerable)
+
+
+
+
+
+
+
+
+
+
+
+
+ T[] System.Linq.Dynamic.Core.DynamicEnumerableExtensions::ToDynamicArray(System.Collections.IEnumerable)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object[] System.Linq.Dynamic.Core.DynamicEnumerableExtensions::ToDynamicArray(System.Collections.IEnumerable,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.List`1<System.Object> System.Linq.Dynamic.Core.DynamicEnumerableExtensions::ToDynamicList(System.Collections.IEnumerable)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.List`1<System.Object> System.Linq.Dynamic.Core.DynamicEnumerableExtensions::ToDynamicList(System.Collections.IEnumerable,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.List`1<T> System.Linq.Dynamic.Core.DynamicEnumerableExtensions::ToDynamicList(System.Collections.IEnumerable)
+
+
+
+
+
+
+
+
+
+
+
+
+ T[] System.Linq.Dynamic.Core.DynamicEnumerableExtensions::CastToArray(System.Collections.IEnumerable)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.List`1<T> System.Linq.Dynamic.Core.DynamicEnumerableExtensions::CastToList(System.Collections.IEnumerable)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicEnumerableExtensions::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicExpressionParser
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression`1<System.Func`1<TResult>> System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression`1<System.Func`1<TResult>> System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression`1<System.Func`1<TResult>> System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression`1<System.Func`1<TResult>> System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Boolean,System.Type,System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression`1<System.Func`2<T,TResult>> System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression`1<System.Func`2<T,TResult>> System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Boolean,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicGetMemberBinder
+
+
+
+
+ System.Dynamic.DynamicMetaObject System.Linq.Dynamic.Core.DynamicGetMemberBinder::FallbackGetMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicGetMemberBinder::GetDynamicMember(System.Object,System.String,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicGetMemberBinder::.ctor(System.String,System.Linq.Dynamic.Core.ParsingConfig)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicGetMemberBinder::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicOrdering
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.DynamicOrdering::get_Selector()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicOrdering::get_Ascending()
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.DynamicOrdering::get_MethodName()
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicOrdering::.ctor(System.Linq.Expressions.Expression,System.Boolean,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicProperty
+
+
+
+
+ System.String System.Linq.Dynamic.Core.DynamicProperty::get_Name()
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Linq.Dynamic.Core.DynamicProperty::get_Type()
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicProperty::.ctor(System.String,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicPropertyWithValue
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicPropertyWithValue::get_Value()
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicPropertyWithValue::.ctor(System.String,System.Object)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicQueryableExtensions
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.DynamicQueryableExtensions::OptimizeExpression(System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Aggregate(System.Linq.IQueryable,System.String,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicQueryableExtensions::All(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicQueryableExtensions::All(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicQueryableExtensions::Any(System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicQueryableExtensions::Any(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicQueryableExtensions::Any(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicQueryableExtensions::Any(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Double System.Linq.Dynamic.Core.DynamicQueryableExtensions::Average(System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Double System.Linq.Dynamic.Core.DynamicQueryableExtensions::Average(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Double System.Linq.Dynamic.Core.DynamicQueryableExtensions::Average(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Double System.Linq.Dynamic.Core.DynamicQueryableExtensions::Average(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Cast(System.Linq.IQueryable,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Cast(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Cast(System.Linq.IQueryable,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.DynamicQueryableExtensions::Count(System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.DynamicQueryableExtensions::Count(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.DynamicQueryableExtensions::Count(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.DynamicQueryableExtensions::Count(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::DefaultIfEmpty(System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::DefaultIfEmpty(System.Linq.IQueryable,System.Object)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Distinct(System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::First(System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::First(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::First(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::First(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::FirstOrDefault(System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::FirstOrDefault(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::FirstOrDefault(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::FirstOrDefault(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Collections.IEqualityComparer,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::InternalGroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Collections.IEqualityComparer,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.String,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.String,System.String,System.Collections.IEqualityComparer,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.String,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Collections.IEqualityComparer)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.String,System.String,System.Collections.IEqualityComparer)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IEqualityComparer,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::InternalGroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IEqualityComparer,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.String,System.Collections.IEqualityComparer,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.IEnumerable`1<System.Linq.Dynamic.Core.GroupResult> System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupByMany(System.Collections.Generic.IEnumerable`1<TElement>,System.Linq.Dynamic.Core.ParsingConfig,System.String[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.IEnumerable`1<System.Linq.Dynamic.Core.GroupResult> System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupByMany(System.Collections.Generic.IEnumerable`1<TElement>,System.String[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.IEnumerable`1<System.Linq.Dynamic.Core.GroupResult> System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupByMany(System.Collections.Generic.IEnumerable`1<TElement>,System.Func`2<TElement,System.Object>[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.IEnumerable`1<System.Linq.Dynamic.Core.GroupResult> System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupByManyInternal(System.Collections.Generic.IEnumerable`1<TElement>,System.Func`2<TElement,System.Object>[],System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupJoin(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupJoin(System.Linq.IQueryable,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Join(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Join(System.Linq.IQueryable,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable`1<TElement> System.Linq.Dynamic.Core.DynamicQueryableExtensions::Join(System.Linq.IQueryable`1<TElement>,System.Linq.Dynamic.Core.ParsingConfig,System.Collections.Generic.IEnumerable`1<TElement>,System.String,System.String,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable`1<TElement> System.Linq.Dynamic.Core.DynamicQueryableExtensions::Join(System.Linq.IQueryable`1<TElement>,System.Collections.Generic.IEnumerable`1<TElement>,System.String,System.String,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Last(System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Last(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Last(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Last(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::LastOrDefault(System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::LastOrDefault(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::LastOrDefault(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::LastOrDefault(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int64 System.Linq.Dynamic.Core.DynamicQueryableExtensions::LongCount(System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int64 System.Linq.Dynamic.Core.DynamicQueryableExtensions::LongCount(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int64 System.Linq.Dynamic.Core.DynamicQueryableExtensions::LongCount(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int64 System.Linq.Dynamic.Core.DynamicQueryableExtensions::LongCount(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Max(System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Max(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Max(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Max(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Min(System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Min(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Min(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Min(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::OfType(System.Linq.IQueryable,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::OfType(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::OfType(System.Linq.IQueryable,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::OrderBy(System.Linq.IQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::OrderBy(System.Linq.IQueryable`1<TSource>,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::OrderBy(System.Linq.IQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::OrderBy(System.Linq.IQueryable`1<TSource>,System.String,System.Collections.IComparer,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::OrderBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::OrderBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::OrderBy(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::OrderBy(System.Linq.IQueryable,System.String,System.Collections.IComparer,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::InternalOrderBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Page(System.Linq.IQueryable,System.Int32,System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::Page(System.Linq.IQueryable`1<TSource>,System.Int32,System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.PagedResult System.Linq.Dynamic.Core.DynamicQueryableExtensions::PageResult(System.Linq.IQueryable,System.Int32,System.Int32,System.Nullable`1<System.Int32>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.PagedResult`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::PageResult(System.Linq.IQueryable`1<TSource>,System.Int32,System.Int32,System.Nullable`1<System.Int32>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Reverse(System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Select(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Select(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable`1<TResult> System.Linq.Dynamic.Core.DynamicQueryableExtensions::Select(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable`1<TResult> System.Linq.Dynamic.Core.DynamicQueryableExtensions::Select(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Select(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Select(System.Linq.IQueryable,System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectManyInternal(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable`1<TResult> System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable`1<TResult> System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Object[],System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.String,System.String,System.Object[],System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.String,System.String,System.Object[],System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.String,System.String,System.String,System.String,System.Object[],System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Single(System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Single(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Single(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Single(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::SingleOrDefault(System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::SingleOrDefault(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::SingleOrDefault(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::SingleOrDefault(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Skip(System.Linq.IQueryable,System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SkipWhile(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SkipWhile(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Sum(System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Sum(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Sum(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Sum(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Take(System.Linq.IQueryable,System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::TakeWhile(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::TakeWhile(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::ThenBy(System.Linq.IOrderedQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::ThenBy(System.Linq.IOrderedQueryable`1<TSource>,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::ThenBy(System.Linq.IOrderedQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::ThenBy(System.Linq.IOrderedQueryable`1<TSource>,System.String,System.Collections.IComparer,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::ThenBy(System.Linq.IOrderedQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::ThenBy(System.Linq.IOrderedQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::InternalThenBy(System.Linq.IOrderedQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::ThenBy(System.Linq.IOrderedQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::ThenBy(System.Linq.IOrderedQueryable,System.String,System.Collections.IComparer,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::Where(System.Linq.IQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::Where(System.Linq.IQueryable`1<TSource>,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Where(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Where(System.Linq.IQueryable,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Where(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::Where(System.Linq.IQueryable`1<TSource>,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicQueryableExtensions::SupportsLinqToObjects(System.Linq.Dynamic.Core.ParsingConfig,System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicQueryableExtensions::CheckOuterAndInnerTypes(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.Type,System.String,System.String,System.Linq.Expressions.LambdaExpression&,System.Linq.Expressions.LambdaExpression&,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::CreateQuery(System.Reflection.MethodInfo,System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::CreateQuery(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::CreateQuery(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Execute(System.Reflection.MethodInfo,System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ TResult System.Linq.Dynamic.Core.DynamicQueryableExtensions::Execute(System.Reflection.MethodInfo,System.Linq.IQueryable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Execute(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Execute(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ TResult System.Linq.Dynamic.Core.DynamicQueryableExtensions::Execute(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+ TResult System.Linq.Dynamic.Core.DynamicQueryableExtensions::Execute(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ TResult System.Linq.Dynamic.Core.DynamicQueryableExtensions::ConvertResultIfNeeded(System.Object)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicQueryableExtensions::EnsureLambdaExpressionReturnsObject(System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicQueryableExtensions::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicQueryableExtensions/<AsDynamicEnumerable>d__16
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicQueryableExtensions/<AsDynamicEnumerable>d__16::MoveNext()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::WhereInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::WhereInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::WhereInterpolated(System.Linq.IQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::WhereInterpolated(System.Linq.IQueryable`1<TSource>,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::AllInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::AllInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::AnyInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::AnyInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Double System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::AverageInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Double System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::AverageInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SingleInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SingleInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SingleOrDefaultInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SingleOrDefaultInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SkipWhileInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SkipWhileInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::TakeWhileInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::TakeWhileInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SumInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SumInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::CountInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::CountInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::FirstInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::FirstInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::FirstOrDefaultInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::FirstOrDefaultInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::LastInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::LastInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::LastOrDefaultInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::LastOrDefaultInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int64 System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::LongCountInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int64 System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::LongCountInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::MaxInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::MaxInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::MinInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::MinInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable`1<TResult> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable`1<TResult> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectManyInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectManyInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectManyInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectManyInterpolated(System.Linq.IQueryable,System.FormattableString,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectManyInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectManyInterpolated(System.Linq.IQueryable,System.Type,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable`1<TResult> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectManyInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IQueryable`1<TResult> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectManyInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::OrderByInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString,System.Collections.IComparer)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::OrderByInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::OrderByInterpolated(System.Linq.IQueryable,System.FormattableString,System.Collections.IComparer)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::OrderByInterpolated(System.Linq.IQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::OrderByInterpolated(System.Linq.IQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString,System.Collections.IComparer)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::OrderByInterpolated(System.Linq.IQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::OrderByInterpolated(System.Linq.IQueryable`1<TSource>,System.FormattableString,System.Collections.IComparer)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::OrderByInterpolated(System.Linq.IQueryable`1<TSource>,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ThenByInterpolated(System.Linq.IOrderedQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString,System.Collections.IComparer)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ThenByInterpolated(System.Linq.IOrderedQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ThenByInterpolated(System.Linq.IOrderedQueryable,System.FormattableString,System.Collections.IComparer)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ThenByInterpolated(System.Linq.IOrderedQueryable,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ThenByInterpolated(System.Linq.IOrderedQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString,System.Collections.IComparer)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ThenByInterpolated(System.Linq.IOrderedQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ThenByInterpolated(System.Linq.IOrderedQueryable`1<TSource>,System.FormattableString,System.Collections.IComparer)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ThenByInterpolated(System.Linq.IOrderedQueryable`1<TSource>,System.FormattableString)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ParseFormattableString(System.FormattableString,System.Object[]&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.ExtensibilityPoint
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.ExtensibilityPoint::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.GroupResult
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.GroupResult::get_Key()
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.GroupResult::get_Count()
+
+
+
+
+
+
+
+
+
+
+ System.Collections.IEnumerable System.Linq.Dynamic.Core.GroupResult::get_Items()
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.IEnumerable`1<System.Linq.Dynamic.Core.GroupResult> System.Linq.Dynamic.Core.GroupResult::get_Subgroups()
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.GroupResult::ToString()
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.PagedResult
+
+
+
+
+ System.Linq.IQueryable System.Linq.Dynamic.Core.PagedResult::get_Queryable()
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.PagedResult::get_CurrentPage()
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.PagedResult::get_PageCount()
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.PagedResult::get_PageSize()
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.PagedResult::get_RowCount()
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.PagedResult`1
+
+
+
+
+ System.Linq.IQueryable`1<TSource> System.Linq.Dynamic.Core.PagedResult`1::get_Queryable()
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.ParameterExpressionHelper
+
+
+
+
+ System.Linq.Expressions.ParameterExpression System.Linq.Dynamic.Core.ParameterExpressionHelper::CreateParameterExpression(System.Type,System.String,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.ParameterExpressionHelper::GenerateRandomWord()
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.ParsingConfig
+
+
+
+
+ System.Linq.Dynamic.Core.ParsingConfig System.Linq.Dynamic.Core.ParsingConfig::get_Default()
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.ParsingConfig System.Linq.Dynamic.Core.ParsingConfig::get_DefaultEFCore21()
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.ParsingConfig System.Linq.Dynamic.Core.ParsingConfig::get_DefaultCosmosDb()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_IsCaseSensitive()
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider System.Linq.Dynamic.Core.ParsingConfig::get_CustomTypeProvider()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.ParsingConfig::set_CustomTypeProvider(System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.ParsingConfig::UseDefaultDynamicLinqCustomTypeProvider(System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.ParsingConfig::UseDefaultDynamicLinqCustomTypeProvider(System.Collections.Generic.IList`1<System.Type>,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_LoadAdditionalAssembliesFromCurrentDomainBaseDirectory()
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.IExpressionPromoter System.Linq.Dynamic.Core.ParsingConfig::get_ExpressionPromoter()
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.ParsingConfig::set_ExpressionPromoter(System.Linq.Dynamic.Core.Parser.IExpressionPromoter)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.IQueryableAnalyzer System.Linq.Dynamic.Core.ParsingConfig::get_QueryableAnalyzer()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.ParsingConfig::set_QueryableAnalyzer(System.Linq.Dynamic.Core.IQueryableAnalyzer)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_AreContextKeywordsEnabled()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_EvaluateGroupByAtDatabase()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_UseParameterizedNamesInDynamicQuery()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_AllowNewToEvaluateAnyType()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_RenameParameterExpression()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_RenameEmptyParameterExpressionNames()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_DisableMemberAccessToIndexAccessorFallback()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_ResolveTypesBySimpleName()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_SupportEnumerationsFromSystemNamespace()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_DateTimeIsParsedAsUTC()
+
+
+
+
+
+
+
+
+
+
+ System.Globalization.CultureInfo System.Linq.Dynamic.Core.ParsingConfig::get_NumberParseCulture()
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.IDictionary`2<System.Type,System.ComponentModel.TypeConverter> System.Linq.Dynamic.Core.ParsingConfig::get_TypeConverters()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_NullPropagatingUseDefaultValueForNonNullableValueTypes()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_SupportCastingToFullyQualifiedTypeAsString()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_PrioritizePropertyOrFieldOverTheType()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_SupportDotInPropertyNames()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_DisallowNewKeyword()
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Util.Cache.CacheConfig System.Linq.Dynamic.Core.ParsingConfig::get_ConstantExpressionCacheConfig()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_ConvertObjectToSupportComparison()
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Config.StringLiteralParsingType System.Linq.Dynamic.Core.ParsingConfig::get_StringLiteralParsing()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_RestrictOrderByToPropertyOrField()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_AllowEqualsAndToStringMethodsOnObject()
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.ParsingConfig::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Validation.Check
+
+
+
+
+ System.Object[] System.Linq.Dynamic.Core.Validation.Check::Args(System.Object[],System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ T System.Linq.Dynamic.Core.Validation.Check::Condition(T,System.Predicate`1<T>,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ T System.Linq.Dynamic.Core.Validation.Check::NotNull(T,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ T System.Linq.Dynamic.Core.Validation.Check::NotNull(T,System.String,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.IEnumerable`1<T> System.Linq.Dynamic.Core.Validation.Check::NotNullOrEmpty(System.Collections.Generic.IEnumerable`1<T>,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Validation.Check::NotEmpty(System.String,System.String)
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Validation.Check::NotNullOrEmpty(System.String,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Validation.Check::NotNullOrWhiteSpace(System.String,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.IEnumerable`1<T> System.Linq.Dynamic.Core.Validation.Check::HasNoNulls(System.Collections.Generic.IEnumerable`1<T>,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Validation.CoreStrings
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Validation.CoreStrings::ArgumentPropertyNull(System.String,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Validation.CoreStrings::ArgumentIsEmpty(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Validation.CoreStrings::CollectionArgumentIsEmpty(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Util.DateTimeUtils
+
+
+
+
+ System.DateTime System.Linq.Dynamic.Core.Util.DateTimeUtils::get_UtcNow()
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Util.ParameterExpressionRenamer
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Util.ParameterExpressionRenamer::Rename(System.Linq.Expressions.Expression,System.Linq.Expressions.ParameterExpression&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Util.ParameterExpressionRenamer::VisitParameter(System.Linq.Expressions.ParameterExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Util.ParameterExpressionRenamer::.ctor(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Util.ParameterExpressionRenamer::.ctor(System.String,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Util.QueryableMethodFinder
+
+
+
+
+ System.Reflection.MethodInfo System.Linq.Dynamic.Core.Util.QueryableMethodFinder::GetGenericMethod(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Reflection.MethodInfo System.Linq.Dynamic.Core.Util.QueryableMethodFinder::GetMethod(System.String,System.Type,System.Type,System.Int32,System.Func`2<System.Reflection.MethodInfo,System.Boolean>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Reflection.MethodInfo System.Linq.Dynamic.Core.Util.QueryableMethodFinder::GetMethod(System.String,System.Type,System.Int32,System.Func`2<System.Reflection.MethodInfo,System.Boolean>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Reflection.MethodInfo System.Linq.Dynamic.Core.Util.QueryableMethodFinder::GetMethodWithExpressionParameter(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Reflection.MethodInfo System.Linq.Dynamic.Core.Util.QueryableMethodFinder::GetMethodWithIntParameter(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Reflection.MethodInfo System.Linq.Dynamic.Core.Util.QueryableMethodFinder::GetMethod(System.String,System.Int32,System.Func`2<System.Reflection.MethodInfo,System.Boolean>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Util.RuntimeInformationUtils
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Util.RuntimeInformationUtils::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Util.TaskUtils
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Util.TaskUtils::Run(System.Action)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Util.Cache.CacheConfig
+
+
+
+
+ System.TimeSpan System.Linq.Dynamic.Core.Util.Cache.CacheConfig::get_TimeToLive()
+
+
+
+
+
+
+
+
+
+
+ System.Nullable`1<System.Int32> System.Linq.Dynamic.Core.Util.Cache.CacheConfig::get_MinItemsTrigger()
+
+
+
+
+
+
+
+
+
+
+ System.TimeSpan System.Linq.Dynamic.Core.Util.Cache.CacheConfig::get_CleanupFrequency()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Util.Cache.CacheConfig::get_ReturnExpiredItems()
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Util.Cache.CacheEntry`1
+
+
+
+
+ TValue System.Linq.Dynamic.Core.Util.Cache.CacheEntry`1::get_Value()
+
+
+
+
+
+
+
+
+
+
+ System.DateTime System.Linq.Dynamic.Core.Util.Cache.CacheEntry`1::get_ExpirationTime()
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Util.Cache.CacheEntry`1::.ctor(TValue,System.DateTime)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2
+
+
+
+
+ System.TimeSpan System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::get_TimeToLive()
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::get_Count()
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::AddOrUpdate(TKey,TValue)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::TryGetValue(TKey,TValue&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::Remove(TKey)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::CleanupIfNeeded()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::Cleanup()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::.ctor(System.TimeSpan,System.Nullable`1<System.TimeSpan>,System.Nullable`1<System.Int64>,System.Linq.Dynamic.Core.Util.IDateTimeUtils,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::.ctor(System.Linq.Dynamic.Core.Util.Cache.CacheConfig,System.Linq.Dynamic.Core.Util.IDateTimeUtils)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Util.Cache.SlidingCacheConstants
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Util.Cache.SlidingCacheConstants::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.TypeConverters.CustomDateTimeConverter
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.TypeConverters.CustomDateTimeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.TypeConverters.TypeConverterFactory
+
+
+
+
+ System.ComponentModel.TypeConverter System.Linq.Dynamic.Core.TypeConverters.TypeConverterFactory::GetConverter(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.TypeConverters.TypeConverterFactory::.ctor(System.Linq.Dynamic.Core.ParsingConfig)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Tokenizer.TextParser
+
+
+
+
+ System.Linq.Dynamic.Core.Tokenizer.TextParser System.Linq.Dynamic.Core.Tokenizer.TextParser::Clone()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Char System.Linq.Dynamic.Core.Tokenizer.TextParser::PeekNextChar()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::NextToken()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::ValidateToken(System.Linq.Dynamic.Core.Tokenizer.TokenId,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Tokenizer.TextParser::TokenIsIdentifier(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Tokenizer.TextParser::TryGetToken(System.String[],System.Linq.Dynamic.Core.Tokenizer.TokenId[],System.Linq.Dynamic.Core.Tokenizer.Token&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::SetTextPos(System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::NextChar()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::ValidateExpression()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::ValidateDigit()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::ValidateHexChar()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::ValidateBinaryChar()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Exception System.Linq.Dynamic.Core.Tokenizer.TextParser::ParseError(System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Tokenizer.TokenId System.Linq.Dynamic.Core.Tokenizer.TextParser::GetAliasedTokenId(System.Linq.Dynamic.Core.Tokenizer.TokenId,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Exception System.Linq.Dynamic.Core.Tokenizer.TextParser::ParseError(System.Int32,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Tokenizer.TextParser::IsHexChar(System.Char)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Tokenizer.TextParser::IsZeroOrOne(System.Char)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::.ctor(System.Linq.Dynamic.Core.ParsingConfig,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Tokenizer.Token
+
+
+
+
+ System.Linq.Dynamic.Core.Tokenizer.TokenId System.Linq.Dynamic.Core.Tokenizer.Token::get_Id()
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Tokenizer.TokenId System.Linq.Dynamic.Core.Tokenizer.Token::get_OriginalId()
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Tokenizer.Token::get_Text()
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.Tokenizer.Token::get_Pos()
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.ConstantExpressionHelper
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ConstantExpressionHelper::TryGetText(System.Linq.Expressions.Expression,System.String&)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ConstantExpressionHelper::CreateLiteral(System.Object,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ConstantExpressionHelper::.ctor(System.Linq.Dynamic.Core.ParsingConfig)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.ConstantExpressionHelperFactory
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.ConstantExpressionHelper System.Linq.Dynamic.Core.Parser.ConstantExpressionHelperFactory::GetInstance(System.Linq.Dynamic.Core.ParsingConfig)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ConstantExpressionHelperFactory::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.ConstantExpressionWrapper
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ConstantExpressionWrapper::Wrap(System.Linq.Expressions.Expression&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ConstantExpressionWrapper::TryUnwrapAsValue(System.Linq.Expressions.MemberExpression,TValue&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ConstantExpressionWrapper::TryUnwrapAsConstantExpression(System.Linq.Expressions.MemberExpression,System.Linq.Expressions.ConstantExpression&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.MemberExpression System.Linq.Dynamic.Core.Parser.ConstantExpressionWrapper::Wrap(TValue)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.Constants
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.Constants::IsNull(System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.EnumerationsFromMscorlib
+
+
+
+
+ System.Collections.Generic.IEnumerable`1<System.Type> System.Linq.Dynamic.Core.Parser.EnumerationsFromMscorlib::AddEnumsFromAssembly(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.EnumerationsFromMscorlib::Add(System.Linq.IGrouping`2<System.String,System.Type>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.EnumerationsFromMscorlib::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.ExpressionHelper
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ExpressionHelper::WrapConstantExpression(System.Linq.Expressions.Expression&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::TryUnwrapAsValue(System.Linq.Expressions.Expression,TValue&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::TryUnwrapAsConstantExpression(System.Linq.Expressions.Expression,System.Linq.Expressions.ConstantExpression&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::ConvertNumericTypeToBiggestCommonTypeForBinaryOperator(System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateAdd(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateStringConcat(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateSubtract(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateEqual(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateNotEqual(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateGreaterThan(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateGreaterThanEqual(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateLessThan(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateLessThanEqual(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ExpressionHelper::OptimizeForEqualityIfPossible(System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::OptimizeStringForEqualityIfPossible(System.String,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::MemberExpressionIsDynamic(System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::ConvertToExpandoObjectAndCreateDynamicExpression(System.Linq.Expressions.Expression,System.Type,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ExpressionHelper::WrapConstantExpressions(System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::TryGenerateAndAlsoNotNullExpression(System.Linq.Expressions.Expression,System.Boolean,System.Linq.Expressions.Expression&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::ExpressionQualifiesForNullPropagation(System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateDefaultExpression(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::ConvertAnyArrayToObjectArray(System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::TryConvertTypes(System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GetMemberExpression(System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.List`1<System.Linq.Expressions.Expression> System.Linq.Dynamic.Core.Parser.ExpressionHelper::CollectExpressions(System.Boolean,System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateStaticMethodCall(System.String,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::TryGetStaticMethod(System.String,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GetMethodCallExpression(System.Linq.Expressions.MethodCallExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GetUnaryExpression(System.Linq.Expressions.UnaryExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object[] System.Linq.Dynamic.Core.Parser.ExpressionHelper::ConvertIfIEnumerableHasValues(System.Collections.IEnumerable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::TryGetAsIndexerExpression(System.Linq.Expressions.Expression,System.Linq.Expressions.ConditionalExpression&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ExpressionHelper::.ctor(System.Linq.Dynamic.Core.ParsingConfig)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ExpressionHelper::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.ExpressionParser
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Parser.ExpressionParser::get_ItName()
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Parser.ExpressionParser::get_LastLambdaItName()
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ExpressionParser::ProcessParameters(System.Linq.Expressions.ParameterExpression[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ExpressionParser::ProcessValues(System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ExpressionParser::AddSymbol(System.String,System.Object)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::Parse(System.Type,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseOutKeyword()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.IList`1<System.Linq.Dynamic.Core.DynamicOrdering> System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseOrdering(System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseConditionalOperator()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseNullCoalescingOperator()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseLambdaOperator()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseOrOperator()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseAndOperator()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseIn()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseLogicalAndOrOperator()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseComparisonOperator()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionParser::HasImplicitConversion(System.Type,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.ConstantExpression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseEnumToConstantExpression(System.Int32,System.Type,System.Linq.Expressions.ConstantExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseConstantExpressionToEnum(System.Int32,System.Type,System.Linq.Expressions.ConstantExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseShiftOperator()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseAdditive()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseArithmetic()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseUnary()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParsePrimary()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParsePrimaryStart()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseStringLiteralAsStringExpressionOrTypeExpression()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AnyOfTypes.AnyOf`2<System.Linq.Expressions.Expression,System.Type> System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseStringLiteral(System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseStringAndEscape(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseIntegerLiteral()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseRealLiteral()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseParenExpression()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseIdentifier()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseIt()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseParent()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseRoot()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseFunctionIsNull()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseFunctionIIF()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseFunctionNullPropagation()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseFunctionIs()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseFunctionAs()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseFunctionCast()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::GenerateConditional(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseNew()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::CreateArrayInitializerExpression(System.Collections.Generic.List`1<System.Linq.Expressions.Expression>,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::CreateNewExpression(System.Collections.Generic.List`1<System.Linq.Dynamic.Core.DynamicProperty>,System.Collections.Generic.List`1<System.Linq.Expressions.Expression>,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseLambdaInvocation(System.Linq.Expressions.LambdaExpression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseTypeAccess(System.Type,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionParser::TryGenerateConversion(System.Linq.Expressions.Expression,System.Type,System.Linq.Expressions.Expression&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseMemberAccess(System.Type,System.Linq.Expressions.Expression,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionParser::TryFindPropertyOrField(System.Type,System.String,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::CallMethod(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseAsLambda(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseAsEnumOrNestedClass(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionParser::TryParseEnumerable(System.Linq.Expressions.Expression,System.Type,System.String,System.Type,System.Linq.Expressions.Expression[]&,System.Linq.Expressions.Expression&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Linq.Dynamic.Core.Parser.ExpressionParser::ResolveTypeFromArgumentExpression(System.String,System.Linq.Expressions.Expression,System.Nullable`1<System.Int32>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Linq.Dynamic.Core.Parser.ExpressionParser::ResolveTypeFromExpressionValue(System.String,System.Linq.Expressions.ConstantExpression,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Linq.Dynamic.Core.Parser.ExpressionParser::ResolveTypeStringFromArgument(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression[] System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseArgumentList()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression[] System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseArguments()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseElementAccess(System.Linq.Expressions.Expression)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Linq.Dynamic.Core.Parser.ExpressionParser::ToNullableType(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionParser::TryGetMemberName(System.Linq.Expressions.Expression,System.String&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ExpressionParser::CheckAndPromoteOperand(System.Type,System.String,System.Linq.Expressions.Expression&,System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionParser::TryGetOverloadedEqualityOperator(System.Linq.Dynamic.Core.Tokenizer.TokenId,System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression[]&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionParser::TryGetOverloadedImplicitOperator(System.Linq.Dynamic.Core.Tokenizer.TokenId,System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ExpressionParser::CheckAndPromoteOperands(System.Type,System.Linq.Dynamic.Core.Tokenizer.TokenId,System.String,System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression&,System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Exception System.Linq.Dynamic.Core.Parser.ExpressionParser::IncompatibleOperandError(System.String,System.Linq.Expressions.Expression,System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Exception System.Linq.Dynamic.Core.Parser.ExpressionParser::IncompatibleOperandsError(System.String,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Reflection.MemberInfo System.Linq.Dynamic.Core.Parser.ExpressionParser::FindPropertyOrField(System.Type,System.String,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionParser::TokenIsIdentifier(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Parser.ExpressionParser::GetIdentifier()
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Parser.ExpressionParser::GetIdentifierAs()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Parser.ExpressionParser::SanitizeId(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Exception System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseError(System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Exception System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseError(System.Int32,System.String,System.Object[])
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ExpressionParser::.ctor(System.Linq.Expressions.ParameterExpression[],System.String,System.Object[],System.Linq.Dynamic.Core.ParsingConfig)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ExpressionParser::.ctor(System.Linq.Expressions.ParameterExpression[],System.String,System.Object[],System.Linq.Dynamic.Core.ParsingConfig,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ExpressionParser::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.ExpressionPromoter
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionPromoter::Promote(System.Linq.Expressions.Expression,System.Type,System.Boolean,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.ExpressionPromoter::.ctor(System.Linq.Dynamic.Core.ParsingConfig)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.KeywordsHelper
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.KeywordsHelper::IsItOrRootOrParent(AnyOfTypes.AnyOf`3<System.String,System.Linq.Expressions.Expression,System.Type>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.KeywordsHelper::TryGetValue(System.String,AnyOfTypes.AnyOf`3<System.String,System.Linq.Expressions.Expression,System.Type>&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.KeywordsHelper::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.KeywordsHelper::.ctor(System.Linq.Dynamic.Core.ParsingConfig)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.NumberParser
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.NumberParser::ParseIntegerLiteral(System.Int32,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.NumberParser::ParseRealLiteral(System.String,System.String,System.Char,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.NumberParser::TryParseNumber(System.String,System.Type,System.Object&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object System.Linq.Dynamic.Core.Parser.NumberParser::ParseNumber(System.String,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.NumberParser::ParseAsBinary(System.Int32,System.String,System.String,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.NumberParser::.ctor(System.Linq.Dynamic.Core.ParsingConfig)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.NumberParser::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.PredefinedMethodsHelper
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.PredefinedMethodsHelper::IsPredefinedMethod(System.Linq.Dynamic.Core.ParsingConfig,System.Reflection.MemberInfo)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.PredefinedMethodsHelper::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.PredefinedTypesHelper
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.PredefinedTypesHelper::TryAdd(System.String,System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.PredefinedTypesHelper::IsPredefinedType(System.Linq.Dynamic.Core.ParsingConfig,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.PredefinedTypesHelper::.cctor()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.StringParser
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Parser.StringParser::ParseStringAndUnescape(System.String,System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Parser.StringParser::ParseStringAndUnescapeTwoDoubleQuotesByASingleDoubleQuote(System.String,System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Parser.StringParser::ReplaceTwoDoubleQuotesByASingleDoubleQuote(System.String,System.Int32)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.TypeFinder
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeFinder::TryFindTypeByName(System.String,System.Linq.Expressions.ParameterExpression[],System.Boolean,System.Type&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeFinder::TryResolveTypeByUsingCustomTypeProvider(System.String,System.Boolean,System.Type&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeFinder::TryResolveTypeUsingExpressions(System.String,System.Linq.Expressions.ParameterExpression[],System.Type&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.TypeFinder::.ctor(System.Linq.Dynamic.Core.ParsingConfig,System.Linq.Dynamic.Core.Parser.IKeywordsHelper)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.TypeHelper
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsDynamicClass(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::TryGetAsEnumerable(System.Type,System.Type&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::TryGetFirstGenericArgument(System.Type,System.Type&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::TryFindGenericType(System.Type,System.Type,System.Type&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsCompatibleWith(System.Type,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsClass(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsStruct(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsEnumType(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsNumericType(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsNullableType(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::TypeCanBeNull(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Linq.Dynamic.Core.Parser.TypeHelper::ToNullableType(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsSignedIntegralType(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsUnsignedIntegralType(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.Parser.TypeHelper::GetNumericTypeKind(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Parser.TypeHelper::GetTypeName(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Linq.Dynamic.Core.Parser.TypeHelper::GetNullableType(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Linq.Dynamic.Core.Parser.TypeHelper::GetNonNullableType(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Linq.Dynamic.Core.Parser.TypeHelper::GetUnderlyingType(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::TypesAreEqual(System.Type,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.IList`1<System.Type> System.Linq.Dynamic.Core.Parser.TypeHelper::GetSelfAndBaseTypes(System.Type,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.TypeHelper::AddInterface(System.Collections.Generic.ICollection`1<System.Type>,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::TryParseEnum(System.String,System.Type,System.Object&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsDictionary(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.TypeHelper/<GetSelfAndBaseClasses>d__21
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper/<GetSelfAndBaseClasses>d__21::MoveNext()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.WrappedValue`1
+
+
+
+
+ TValue System.Linq.Dynamic.Core.Parser.WrappedValue`1::get_Value()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.WrappedValue`1::op_Equality(System.Linq.Dynamic.Core.Parser.WrappedValue`1<TValue>,System.Linq.Dynamic.Core.Parser.WrappedValue`1<TValue>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.WrappedValue`1::op_Inequality(System.Linq.Dynamic.Core.Parser.WrappedValue`1<TValue>,System.Linq.Dynamic.Core.Parser.WrappedValue`1<TValue>)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.WrappedValue`1::op_Equality(System.Linq.Dynamic.Core.Parser.WrappedValue`1<TValue>,TValue)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.WrappedValue`1::op_Inequality(System.Linq.Dynamic.Core.Parser.WrappedValue`1<TValue>,TValue)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.WrappedValue`1::op_Equality(TValue,System.Linq.Dynamic.Core.Parser.WrappedValue`1<TValue>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.WrappedValue`1::op_Inequality(TValue,System.Linq.Dynamic.Core.Parser.WrappedValue`1<TValue>)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.WrappedValue`1::Equals(System.Object)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.Parser.WrappedValue`1::GetHashCode()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.WrappedValue`1::.ctor(TValue)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodData
+
+
+
+
+ System.Reflection.MethodBase System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodData::get_MethodBase()
+
+
+
+
+
+
+
+
+
+
+ System.Reflection.ParameterInfo[] System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodData::get_Parameters()
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Expressions.Expression[] System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodData::get_Args()
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::TryFindAggregateMethod(System.Type,System.String,System.Type,System.Reflection.MethodInfo&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::CheckAggregateMethodAndTryUpdateArgsToMatchMethodArgs(System.String,System.Linq.Expressions.Expression[]&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::ContainsMethod(System.Type,System.String,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::ContainsMethod(System.Type,System.String,System.Boolean,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression[]&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::FindMethod(System.Type,System.String,System.Boolean,System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression[]&,System.Reflection.MethodBase&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::FindBestMethodBasedOnArguments(System.Collections.Generic.IEnumerable`1<System.Reflection.MethodBase>,System.Linq.Expressions.Expression[]&,System.Reflection.MethodBase&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::FindIndexer(System.Type,System.Linq.Expressions.Expression[],System.Reflection.MethodBase&)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::IsApplicable(System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodData,System.Linq.Expressions.Expression[])
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::FirstIsBetterThanSecond(System.Linq.Expressions.Expression[],System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodData,System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodData)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.SupportedMethods.CompareConversionType System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::CompareConversions(System.Type,System.Type,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.IEnumerable`1<System.Type> System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::SelfAndBaseTypes(System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::AddInterfaces(System.Collections.Generic.ICollection`1<System.Type>,System.Type)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::.ctor(System.Linq.Dynamic.Core.ParsingConfig,System.Linq.Dynamic.Core.Parser.IExpressionHelper)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder/<SelfAndBaseClasses>d__16
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder/<SelfAndBaseClasses>d__16::MoveNext()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Extensions.ListExtensions
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Extensions.ListExtensions::AddIfNotNull(System.Collections.Generic.IList`1<T>,T)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Extensions.TokenIdExtensions
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Extensions.TokenIdExtensions::IsEqualityOperator(System.Linq.Dynamic.Core.Tokenizer.TokenId)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean System.Linq.Dynamic.Core.Extensions.TokenIdExtensions::IsComparisonOperator(System.Linq.Dynamic.Core.Tokenizer.TokenId)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.Exceptions.ParseException
+
+
+
+
+ System.Int32 System.Linq.Dynamic.Core.Exceptions.ParseException::get_Position()
+
+
+
+
+
+
+
+
+
+
+ System.String System.Linq.Dynamic.Core.Exceptions.ParseException::ToString()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Exceptions.ParseException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Exceptions.ParseException::.ctor(System.String,System.Exception)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Exceptions.ParseException::.ctor(System.String,System.Int32,System.Exception)
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.Exceptions.ParseException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider
+
+
+
+
+ System.Type[] System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider::FindTypesMarkedWithDynamicLinqTypeAttribute(System.Collections.Generic.IEnumerable`1<System.Reflection.Assembly>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider::ResolveType(System.Collections.Generic.IEnumerable`1<System.Reflection.Assembly>,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider::ResolveTypeBySimpleName(System.Collections.Generic.IEnumerable`1<System.Reflection.Assembly>,System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type[] System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider::GetAssemblyTypesWithDynamicLinqTypeAttribute(System.Collections.Generic.IEnumerable`1<System.Reflection.Assembly>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider::.ctor(System.Collections.Generic.IList`1<System.Type>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider
+
+
+
+
+ System.Collections.Generic.HashSet`1<System.Type> System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::GetCustomTypes()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.List`1<System.Reflection.MethodInfo>> System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::GetExtensionMethods()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::ResolveType(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::ResolveTypeBySimpleName(System.String)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.HashSet`1<System.Type> System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::GetCustomTypesInternal()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.List`1<System.Reflection.MethodInfo>> System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::GetExtensionMethodsInternal()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::.ctor(System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::.ctor(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::.ctor(System.Linq.Dynamic.Core.ParsingConfig,System.Collections.Generic.IList`1<System.Type>,System.Boolean)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AnyOfTypes.AnyOf`2
+
+
+
+
+ System.String AnyOfTypes.AnyOf`2::get__thisType()
+
+
+
+
+
+
+
+
+
+
+ AnyOfTypes.AnyOfType[] AnyOfTypes.AnyOf`2::get_AnyOfTypes()
+
+
+
+
+
+
+
+
+
+
+ System.Type[] AnyOfTypes.AnyOf`2::get_Types()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean AnyOfTypes.AnyOf`2::get_IsUndefined()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean AnyOfTypes.AnyOf`2::get_IsFirst()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean AnyOfTypes.AnyOf`2::get_IsSecond()
+
+
+
+
+
+
+
+
+
+
+ AnyOfTypes.AnyOf`2<TFirst,TSecond> AnyOfTypes.AnyOf`2::op_Implicit(TFirst)
+
+
+
+
+
+
+
+
+
+
+ TFirst AnyOfTypes.AnyOf`2::op_Implicit(AnyOfTypes.AnyOf`2<TFirst,TSecond>)
+
+
+
+
+
+
+
+
+
+
+ TFirst AnyOfTypes.AnyOf`2::get_First()
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AnyOfTypes.AnyOf`2<TFirst,TSecond> AnyOfTypes.AnyOf`2::op_Implicit(TSecond)
+
+
+
+
+
+
+
+
+
+
+ TSecond AnyOfTypes.AnyOf`2::op_Implicit(AnyOfTypes.AnyOf`2<TFirst,TSecond>)
+
+
+
+
+
+
+
+
+
+
+ TSecond AnyOfTypes.AnyOf`2::get_Second()
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void AnyOfTypes.AnyOf`2::Validate(AnyOfTypes.AnyOfType)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AnyOfTypes.AnyOfType AnyOfTypes.AnyOf`2::get_CurrentType()
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object AnyOfTypes.AnyOf`2::get_CurrentValue()
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type AnyOfTypes.AnyOf`2::get_CurrentValueType()
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int32 AnyOfTypes.AnyOf`2::GetHashCode()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean AnyOfTypes.AnyOf`2::Equals(AnyOfTypes.AnyOf`2<TFirst,TSecond>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean AnyOfTypes.AnyOf`2::op_Equality(AnyOfTypes.AnyOf`2<TFirst,TSecond>,AnyOfTypes.AnyOf`2<TFirst,TSecond>)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean AnyOfTypes.AnyOf`2::op_Inequality(AnyOfTypes.AnyOf`2<TFirst,TSecond>,AnyOfTypes.AnyOf`2<TFirst,TSecond>)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean AnyOfTypes.AnyOf`2::Equals(System.Object)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String AnyOfTypes.AnyOf`2::ToString()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void AnyOfTypes.AnyOf`2::.ctor(TFirst)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void AnyOfTypes.AnyOf`2::.ctor(TSecond)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AnyOfTypes.AnyOf`3
+
+
+
+
+ System.String AnyOfTypes.AnyOf`3::get__thisType()
+
+
+
+
+
+
+
+
+
+
+ AnyOfTypes.AnyOfType[] AnyOfTypes.AnyOf`3::get_AnyOfTypes()
+
+
+
+
+
+
+
+
+
+
+ System.Type[] AnyOfTypes.AnyOf`3::get_Types()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean AnyOfTypes.AnyOf`3::get_IsUndefined()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean AnyOfTypes.AnyOf`3::get_IsFirst()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean AnyOfTypes.AnyOf`3::get_IsSecond()
+
+
+
+
+
+
+
+
+
+
+ System.Boolean AnyOfTypes.AnyOf`3::get_IsThird()
+
+
+
+
+
+
+
+
+
+
+ AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird> AnyOfTypes.AnyOf`3::op_Implicit(TFirst)
+
+
+
+
+
+
+
+
+
+
+ TFirst AnyOfTypes.AnyOf`3::op_Implicit(AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird>)
+
+
+
+
+
+
+
+
+
+
+ TFirst AnyOfTypes.AnyOf`3::get_First()
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird> AnyOfTypes.AnyOf`3::op_Implicit(TSecond)
+
+
+
+
+
+
+
+
+
+
+ TSecond AnyOfTypes.AnyOf`3::op_Implicit(AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird>)
+
+
+
+
+
+
+
+
+
+
+ TSecond AnyOfTypes.AnyOf`3::get_Second()
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird> AnyOfTypes.AnyOf`3::op_Implicit(TThird)
+
+
+
+
+
+
+
+
+
+
+ TThird AnyOfTypes.AnyOf`3::op_Implicit(AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird>)
+
+
+
+
+
+
+
+
+
+
+ TThird AnyOfTypes.AnyOf`3::get_Third()
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void AnyOfTypes.AnyOf`3::Validate(AnyOfTypes.AnyOfType)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AnyOfTypes.AnyOfType AnyOfTypes.AnyOf`3::get_CurrentType()
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Object AnyOfTypes.AnyOf`3::get_CurrentValue()
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Type AnyOfTypes.AnyOf`3::get_CurrentValueType()
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int32 AnyOfTypes.AnyOf`3::GetHashCode()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean AnyOfTypes.AnyOf`3::Equals(AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird>)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean AnyOfTypes.AnyOf`3::op_Equality(AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird>,AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird>)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean AnyOfTypes.AnyOf`3::op_Inequality(AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird>,AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird>)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Boolean AnyOfTypes.AnyOf`3::Equals(System.Object)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.String AnyOfTypes.AnyOf`3::ToString()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void AnyOfTypes.AnyOf`3::.ctor(TFirst)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void AnyOfTypes.AnyOf`3::.ctor(TSecond)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Void AnyOfTypes.AnyOf`3::.ctor(TThird)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AnyOfTypes.HashCodeCalculator
+
+
+
+
+ System.Int32 AnyOfTypes.HashCodeCalculator::GetHashCode(System.Collections.Generic.IEnumerable`1<System.Object>)
+
+
+
+
+
+
+
+
+
+
+
+
+ System.Int32 AnyOfTypes.HashCodeCalculator::<GetHashCode>g__HashCodeAggregator|0_0(System.Int32,System.Object)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/test/System.Linq.Dynamic.Core.Tests/DynamicExpressionParserTests.cs b/test/System.Linq.Dynamic.Core.Tests/DynamicExpressionParserTests.cs
index e301394c..67888150 100644
--- a/test/System.Linq.Dynamic.Core.Tests/DynamicExpressionParserTests.cs
+++ b/test/System.Linq.Dynamic.Core.Tests/DynamicExpressionParserTests.cs
@@ -3,6 +3,7 @@
using System.Linq.Dynamic.Core.Config;
using System.Linq.Dynamic.Core.CustomTypeProviders;
using System.Linq.Dynamic.Core.Exceptions;
+using System.Linq.Dynamic.Core.Parser;
using System.Linq.Dynamic.Core.Tests.Helpers;
using System.Linq.Dynamic.Core.Tests.Helpers.Models;
using System.Linq.Dynamic.Core.Tests.TestHelpers;
@@ -270,6 +271,37 @@ public override string ToString()
}
}
+ [DynamicLinqType]
+ public static class MyMethodsWithImplicitOperatorSupport
+ {
+ public static string UsesMyStructWithImplicitOperator(MyStructWithImplicitOperator myStruct)
+ {
+ return myStruct.Value;
+ }
+ }
+
+ public readonly struct MyStructWithImplicitOperator
+ {
+ private readonly string _value;
+
+ public MyStructWithImplicitOperator(string value)
+ {
+ _value = value;
+ }
+
+ public static implicit operator MyStructWithImplicitOperator(string value)
+ {
+ return new MyStructWithImplicitOperator(value);
+ }
+
+ public static implicit operator string(MyStructWithImplicitOperator myStruct)
+ {
+ return myStruct._value;
+ }
+
+ public string Value => _value;
+ }
+
internal class TestClass794
{
public byte ByteValue { get; set; }
@@ -1517,6 +1549,23 @@ public void DynamicExpressionParser_ParseLambda_With_One_Way_Implicit_Conversion
Assert.NotNull(lambda);
}
+ [Fact]
+ public void DynamicExpressionParser_ParseLambda_With_Implicit_Operator_In_Method_Argument()
+ {
+ // Arrange - Method takes a MyStructWithImplicitOperator but we pass a string literal
+ var expression = $"{nameof(MyMethodsWithImplicitOperatorSupport)}.{nameof(MyMethodsWithImplicitOperatorSupport.UsesMyStructWithImplicitOperator)}(\"Foo\")";
+
+ // Act
+ var parser = new ExpressionParser([], expression, [], ParsingConfig.Default);
+ var parsedExpression = parser.Parse(typeof(string));
+ var lambda = Expression.Lambda>(parsedExpression);
+ var method = lambda.Compile();
+ var result = method();
+
+ // Assert
+ Assert.Equal("Foo", result);
+ }
+
[Fact]
public void DynamicExpressionParser_ParseLambda_StaticClassWithStaticPropertyWithSameNameAsNormalProperty()
{
From 605c55888905ee829a78d161c3625dfcf4615d97 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Sun, 29 Mar 2026 06:27:18 +0000
Subject: [PATCH 3/6] Remove coverage file from tracking, add to gitignore
Agent-Logs-Url: https://github.com/zzzprojects/System.Linq.Dynamic.Core/sessions/82ed2f4e-0c76-407c-a330-d4043e96162f
Co-authored-by: StefH <249938+StefH@users.noreply.github.com>
---
.gitignore | 1 +
.../coverage.opencover.xml | 18593 ----------------
2 files changed, 1 insertion(+), 18593 deletions(-)
delete mode 100644 test/System.Linq.Dynamic.Core.Tests.Net9/coverage.opencover.xml
diff --git a/.gitignore b/.gitignore
index 26cb01a0..93b7d410 100644
--- a/.gitignore
+++ b/.gitignore
@@ -238,4 +238,5 @@ _Pvt_Extensions
/coverage.xml
/dynamic-coverage-*.xml
/test/**/coverage.net8.0.opencover.xml
+/test/**/coverage.opencover.xml
.nuget/
diff --git a/test/System.Linq.Dynamic.Core.Tests.Net9/coverage.opencover.xml b/test/System.Linq.Dynamic.Core.Tests.Net9/coverage.opencover.xml
deleted file mode 100644
index 1c813a45..00000000
--- a/test/System.Linq.Dynamic.Core.Tests.Net9/coverage.opencover.xml
+++ /dev/null
@@ -1,18593 +0,0 @@
-
-
-
-
-
- Microsoft.EntityFrameworkCore.DynamicLinq.dll
- 2026-03-29T06:25:55
- Microsoft.EntityFrameworkCore.DynamicLinq
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions
-
-
-
-
- System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::AllAsync(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::AllAsync(System.Linq.IQueryable,System.String,System.Threading.CancellationToken,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::AnyAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::AnyAsync(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::AnyAsync(System.Linq.IQueryable,System.String,System.Threading.CancellationToken,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Double> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::AverageAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Double> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::AverageAsync(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Double> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::AverageAsync(System.Linq.IQueryable,System.String,System.Threading.CancellationToken,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Int32> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::CountAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Int32> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::CountAsync(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Int32> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::CountAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::FirstAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::FirstAsync(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::FirstAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::FirstOrDefaultAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::FirstOrDefaultAsync(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::FirstOrDefaultAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LastAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LastAsync(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LastAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LastOrDefaultAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LastOrDefaultAsync(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LastOrDefaultAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Int64> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LongCountAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Int64> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LongCountAsync(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Int64> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::LongCountAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::SingleOrDefaultAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::SingleOrDefaultAsync(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::SingleOrDefaultAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::SumAsync(System.Linq.IQueryable,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::SumAsync(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::SumAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::ExecuteDynamicAsync(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<TResult> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::ExecuteAsync(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<TResult> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::ExecuteAsync(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::ExecuteDynamicAsync(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.Expression,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<TResult> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::ExecuteAsync(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.Expression,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Reflection.MethodInfo Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::GetMethod(System.String,System.Int32,System.Func`2<System.Reflection.MethodInfo,System.Boolean>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Reflection.MethodInfo Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::GetMethod(System.String,System.Type,System.Int32,System.Func`2<System.Reflection.MethodInfo,System.Boolean>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::CastSource(System.Linq.IQueryable,System.Reflection.MethodInfo)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<TResult> Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::ExecuteAsync(Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider,System.Linq.Expressions.Expression,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::OptimizeExpression(System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void Microsoft.EntityFrameworkCore.DynamicLinq.EntityFrameworkDynamicQueryableExtensions::.cctor()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions
-
-
-
-
- System.String Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::ParseFormattableString(System.FormattableString,System.Object[]&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::AllInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::AllInterpolatedAsync(System.Linq.IQueryable,System.FormattableString,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::AnyInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Boolean> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::AnyInterpolatedAsync(System.Linq.IQueryable,System.FormattableString,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Double> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::AverageInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Double> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::AverageInterpolatedAsync(System.Linq.IQueryable,System.FormattableString,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Int32> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::CountInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Int32> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::CountInterpolatedAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::FirstInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::FirstInterpolatedAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::FirstOrDefaultInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::FirstOrDefaultInterpolatedAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::LastInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::LastInterpolatedAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::LastOrDefaultInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::LastOrDefaultInterpolatedAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Int64> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::LongCountInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Int64> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::LongCountInterpolatedAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::SingleOrDefaultInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::SingleOrDefaultInterpolatedAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::SumInterpolatedAsync(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Object> Microsoft.EntityFrameworkCore.DynamicLinq.EFDynamicQueryableWithFormattableStringExtensions::SumInterpolatedAsync(System.Linq.IQueryable,System.Threading.CancellationToken,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.EmptyArray`1
-
-
-
-
- System.Void System.EmptyArray`1::.cctor()
-
-
-
-
-
-
-
-
-
-
-
- System.StringExtensions
-
-
-
-
- System.Boolean System.StringExtensions::IsNullOrWhiteSpace(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Reflection.CustomIntrospectionExtensions
-
-
-
-
- System.Type[] System.Reflection.CustomIntrospectionExtensions::GetGenericTypeArguments(System.Reflection.TypeInfo)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Reflection.CustomTypeBuilderExtensions
-
-
-
-
- System.Type System.Reflection.CustomTypeBuilderExtensions::CreateType(System.Reflection.Emit.TypeBuilder)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Reflection.Emit.PropertyBuilder System.Reflection.CustomTypeBuilderExtensions::DefineProperty(System.Reflection.Emit.TypeBuilder,System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Reflection.CustomTypeBuilderExtensions::AsType(System.Reflection.Emit.TypeBuilder)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Reflection.CustomTypeBuilderExtensions::AsType(System.Reflection.Emit.GenericTypeParameterBuilder)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpressionExtensions
-
-
-
-
- System.Type System.Linq.Expressions.LambdaExpressionExtensions::GetReturnType(System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Validation.Check
-
-
-
-
- System.Object[] System.Linq.Dynamic.Core.Validation.Check::Args(System.Object[],System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- T System.Linq.Dynamic.Core.Validation.Check::Condition(T,System.Predicate`1<T>,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- T System.Linq.Dynamic.Core.Validation.Check::NotNull(T,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- T System.Linq.Dynamic.Core.Validation.Check::NotNull(T,System.String,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.IEnumerable`1<T> System.Linq.Dynamic.Core.Validation.Check::NotNullOrEmpty(System.Collections.Generic.IEnumerable`1<T>,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Validation.Check::NotEmpty(System.String,System.String)
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Validation.Check::NotNullOrEmpty(System.String,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Validation.Check::NotNullOrWhiteSpace(System.String,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.IEnumerable`1<T> System.Linq.Dynamic.Core.Validation.Check::HasNoNulls(System.Collections.Generic.IEnumerable`1<T>,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Validation.CoreStrings
-
-
-
-
- System.String System.Linq.Dynamic.Core.Validation.CoreStrings::ArgumentPropertyNull(System.String,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Validation.CoreStrings::ArgumentIsEmpty(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Validation.CoreStrings::CollectionArgumentIsEmpty(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Extensions.ListExtensions
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Extensions.ListExtensions::AddIfNotNull(System.Collections.Generic.IList`1<T>,T)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Extensions.TokenIdExtensions
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Extensions.TokenIdExtensions::IsEqualityOperator(System.Linq.Dynamic.Core.Tokenizer.TokenId)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Extensions.TokenIdExtensions::IsComparisonOperator(System.Linq.Dynamic.Core.Tokenizer.TokenId)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.dll
- 2026-03-29T06:25:55
- System.Linq.Dynamic.Core
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.EmptyArray`1
-
-
-
-
- System.Void System.EmptyArray`1::.cctor()
-
-
-
-
-
-
-
-
-
-
-
- System.StringExtensions
-
-
-
-
- System.Boolean System.StringExtensions::IsNullOrWhiteSpace(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Reflection.CustomIntrospectionExtensions
-
-
-
-
- System.Type[] System.Reflection.CustomIntrospectionExtensions::GetGenericTypeArguments(System.Reflection.TypeInfo)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Reflection.CustomTypeBuilderExtensions
-
-
-
-
- System.Type System.Reflection.CustomTypeBuilderExtensions::CreateType(System.Reflection.Emit.TypeBuilder)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Reflection.Emit.PropertyBuilder System.Reflection.CustomTypeBuilderExtensions::DefineProperty(System.Reflection.Emit.TypeBuilder,System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Reflection.CustomTypeBuilderExtensions::AsType(System.Reflection.Emit.TypeBuilder)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Reflection.CustomTypeBuilderExtensions::AsType(System.Reflection.Emit.GenericTypeParameterBuilder)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpressionExtensions
-
-
-
-
- System.Type System.Linq.Expressions.LambdaExpressionExtensions::GetReturnType(System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.AssemblyBuilderFactory
-
-
-
-
- System.Reflection.Emit.AssemblyBuilder System.Linq.Dynamic.Core.AssemblyBuilderFactory::DefineDynamicAssembly(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DefaultAssemblyHelper
-
-
-
-
- System.Reflection.Assembly[] System.Linq.Dynamic.Core.DefaultAssemblyHelper::GetAssemblies()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DefaultAssemblyHelper::.ctor(System.Linq.Dynamic.Core.ParsingConfig)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DefaultQueryableAnalyzer
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DefaultQueryableAnalyzer::SupportsLinqToObjects(System.Linq.IQueryable,System.Linq.IQueryProvider)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicClass
-
-
-
-
- System.Collections.Generic.Dictionary`2<System.String,System.Object> System.Linq.Dynamic.Core.DynamicClass::get_Properties()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- T System.Linq.Dynamic.Core.DynamicClass::GetDynamicPropertyValue(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicClass::GetDynamicPropertyValue(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicClass::SetDynamicPropertyValue(System.String,T)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicClass::SetDynamicPropertyValue(System.String,System.Object)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicClass::get_System_Linq_Dynamic_Core_DynamicClass_Indexer(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicClass::set_System_Linq_Dynamic_Core_DynamicClass_Indexer(System.String,System.Object)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicClass::ContainsProperty(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.IEnumerable`1<System.String> System.Linq.Dynamic.Core.DynamicClass::GetDynamicMemberNames()
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicClass::TryGetMember(System.Dynamic.GetMemberBinder,System.Object&)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicClass::TrySetMember(System.Dynamic.SetMemberBinder,System.Object)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicClassFactory
-
-
-
-
- System.Type System.Linq.Dynamic.Core.DynamicClassFactory::CreateGenericComparerType(System.Type,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Linq.Dynamic.Core.DynamicClassFactory::CreateType(System.Collections.Generic.IList`1<System.Linq.Dynamic.Core.DynamicProperty>,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicClass System.Linq.Dynamic.Core.DynamicClassFactory::CreateInstance(System.Collections.Generic.IList`1<System.Linq.Dynamic.Core.DynamicPropertyWithValue>,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Linq.Dynamic.Core.DynamicClassFactory::EmitType(System.Collections.Generic.IList`1<System.Linq.Dynamic.Core.DynamicProperty>,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicClassFactory::IsTypePubliclyAccessible(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicClassFactory::EmitEqualityOperators(System.Reflection.Emit.TypeBuilder,System.Reflection.Emit.MethodBuilder)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.DynamicClassFactory::GenerateKey(System.Collections.Generic.IEnumerable`1<System.Linq.Dynamic.Core.DynamicProperty>,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.DynamicClassFactory::Escape(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicClassFactory::ClearGeneratedTypes()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicClassFactory::.cctor()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions
-
-
-
-
- System.Threading.Tasks.Task`1<System.Collections.Generic.List`1<System.Object>> System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions::ToDynamicListAsync(System.Collections.IEnumerable,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Threading.Tasks.Task`1<System.Collections.Generic.List`1<T>> System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions::ToDynamicListAsync(System.Collections.IEnumerable,System.Threading.CancellationToken)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions::.cctor()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToDynamicArrayAsync>d__2
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToDynamicArrayAsync>d__2::MoveNext()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToDynamicArrayAsync>d__3
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToDynamicArrayAsync>d__3::MoveNext()
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToDynamicArrayAsync>d__4`1
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToDynamicArrayAsync>d__4`1::MoveNext()
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToDynamicListAsync>d__5
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToDynamicListAsync>d__5::MoveNext()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToListAsync>d__8`1
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicEnumerableAsyncExtensions/<ToListAsync>d__8`1::MoveNext()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicEnumerableExtensions
-
-
-
-
- System.Object[] System.Linq.Dynamic.Core.DynamicEnumerableExtensions::ToDynamicArray(System.Collections.IEnumerable)
-
-
-
-
-
-
-
-
-
-
-
-
- T[] System.Linq.Dynamic.Core.DynamicEnumerableExtensions::ToDynamicArray(System.Collections.IEnumerable)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object[] System.Linq.Dynamic.Core.DynamicEnumerableExtensions::ToDynamicArray(System.Collections.IEnumerable,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.List`1<System.Object> System.Linq.Dynamic.Core.DynamicEnumerableExtensions::ToDynamicList(System.Collections.IEnumerable)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.List`1<System.Object> System.Linq.Dynamic.Core.DynamicEnumerableExtensions::ToDynamicList(System.Collections.IEnumerable,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.List`1<T> System.Linq.Dynamic.Core.DynamicEnumerableExtensions::ToDynamicList(System.Collections.IEnumerable)
-
-
-
-
-
-
-
-
-
-
-
-
- T[] System.Linq.Dynamic.Core.DynamicEnumerableExtensions::CastToArray(System.Collections.IEnumerable)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.List`1<T> System.Linq.Dynamic.Core.DynamicEnumerableExtensions::CastToList(System.Collections.IEnumerable)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicEnumerableExtensions::.cctor()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicExpressionParser
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression`1<System.Func`1<TResult>> System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression`1<System.Func`1<TResult>> System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression`1<System.Func`1<TResult>> System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression`1<System.Func`1<TResult>> System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Boolean,System.Type,System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression`1<System.Func`2<T,TResult>> System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression`1<System.Func`2<T,TResult>> System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicExpressionParser::ParseLambda(System.Boolean,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicGetMemberBinder
-
-
-
-
- System.Dynamic.DynamicMetaObject System.Linq.Dynamic.Core.DynamicGetMemberBinder::FallbackGetMember(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicGetMemberBinder::GetDynamicMember(System.Object,System.String,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicGetMemberBinder::.ctor(System.String,System.Linq.Dynamic.Core.ParsingConfig)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicGetMemberBinder::.cctor()
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicOrdering
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.DynamicOrdering::get_Selector()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicOrdering::get_Ascending()
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.DynamicOrdering::get_MethodName()
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicOrdering::.ctor(System.Linq.Expressions.Expression,System.Boolean,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicProperty
-
-
-
-
- System.String System.Linq.Dynamic.Core.DynamicProperty::get_Name()
-
-
-
-
-
-
-
-
-
-
- System.Type System.Linq.Dynamic.Core.DynamicProperty::get_Type()
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicProperty::.ctor(System.String,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicPropertyWithValue
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicPropertyWithValue::get_Value()
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicPropertyWithValue::.ctor(System.String,System.Object)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicQueryableExtensions
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.DynamicQueryableExtensions::OptimizeExpression(System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Aggregate(System.Linq.IQueryable,System.String,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicQueryableExtensions::All(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicQueryableExtensions::All(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicQueryableExtensions::Any(System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicQueryableExtensions::Any(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicQueryableExtensions::Any(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicQueryableExtensions::Any(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Double System.Linq.Dynamic.Core.DynamicQueryableExtensions::Average(System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Double System.Linq.Dynamic.Core.DynamicQueryableExtensions::Average(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Double System.Linq.Dynamic.Core.DynamicQueryableExtensions::Average(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Double System.Linq.Dynamic.Core.DynamicQueryableExtensions::Average(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Cast(System.Linq.IQueryable,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Cast(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Cast(System.Linq.IQueryable,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.DynamicQueryableExtensions::Count(System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.DynamicQueryableExtensions::Count(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.DynamicQueryableExtensions::Count(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.DynamicQueryableExtensions::Count(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::DefaultIfEmpty(System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::DefaultIfEmpty(System.Linq.IQueryable,System.Object)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Distinct(System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::First(System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::First(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::First(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::First(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::FirstOrDefault(System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::FirstOrDefault(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::FirstOrDefault(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::FirstOrDefault(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Collections.IEqualityComparer,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::InternalGroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Collections.IEqualityComparer,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.String,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.String,System.String,System.Collections.IEqualityComparer,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.String,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Collections.IEqualityComparer)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.String,System.String,System.Collections.IEqualityComparer)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IEqualityComparer,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::InternalGroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IEqualityComparer,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupBy(System.Linq.IQueryable,System.String,System.Collections.IEqualityComparer,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.IEnumerable`1<System.Linq.Dynamic.Core.GroupResult> System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupByMany(System.Collections.Generic.IEnumerable`1<TElement>,System.Linq.Dynamic.Core.ParsingConfig,System.String[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.IEnumerable`1<System.Linq.Dynamic.Core.GroupResult> System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupByMany(System.Collections.Generic.IEnumerable`1<TElement>,System.String[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.IEnumerable`1<System.Linq.Dynamic.Core.GroupResult> System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupByMany(System.Collections.Generic.IEnumerable`1<TElement>,System.Func`2<TElement,System.Object>[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.IEnumerable`1<System.Linq.Dynamic.Core.GroupResult> System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupByManyInternal(System.Collections.Generic.IEnumerable`1<TElement>,System.Func`2<TElement,System.Object>[],System.Int32)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupJoin(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::GroupJoin(System.Linq.IQueryable,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Join(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Join(System.Linq.IQueryable,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable`1<TElement> System.Linq.Dynamic.Core.DynamicQueryableExtensions::Join(System.Linq.IQueryable`1<TElement>,System.Linq.Dynamic.Core.ParsingConfig,System.Collections.Generic.IEnumerable`1<TElement>,System.String,System.String,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable`1<TElement> System.Linq.Dynamic.Core.DynamicQueryableExtensions::Join(System.Linq.IQueryable`1<TElement>,System.Collections.Generic.IEnumerable`1<TElement>,System.String,System.String,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Last(System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Last(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Last(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Last(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::LastOrDefault(System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::LastOrDefault(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::LastOrDefault(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::LastOrDefault(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int64 System.Linq.Dynamic.Core.DynamicQueryableExtensions::LongCount(System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int64 System.Linq.Dynamic.Core.DynamicQueryableExtensions::LongCount(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int64 System.Linq.Dynamic.Core.DynamicQueryableExtensions::LongCount(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int64 System.Linq.Dynamic.Core.DynamicQueryableExtensions::LongCount(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Max(System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Max(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Max(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Max(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Min(System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Min(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Min(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Min(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::OfType(System.Linq.IQueryable,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::OfType(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::OfType(System.Linq.IQueryable,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::OrderBy(System.Linq.IQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::OrderBy(System.Linq.IQueryable`1<TSource>,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::OrderBy(System.Linq.IQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::OrderBy(System.Linq.IQueryable`1<TSource>,System.String,System.Collections.IComparer,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::OrderBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::OrderBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::OrderBy(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::OrderBy(System.Linq.IQueryable,System.String,System.Collections.IComparer,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::InternalOrderBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Page(System.Linq.IQueryable,System.Int32,System.Int32)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::Page(System.Linq.IQueryable`1<TSource>,System.Int32,System.Int32)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.PagedResult System.Linq.Dynamic.Core.DynamicQueryableExtensions::PageResult(System.Linq.IQueryable,System.Int32,System.Int32,System.Nullable`1<System.Int32>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.PagedResult`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::PageResult(System.Linq.IQueryable`1<TSource>,System.Int32,System.Int32,System.Nullable`1<System.Int32>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Reverse(System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Select(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Select(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable`1<TResult> System.Linq.Dynamic.Core.DynamicQueryableExtensions::Select(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable`1<TResult> System.Linq.Dynamic.Core.DynamicQueryableExtensions::Select(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Select(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Select(System.Linq.IQueryable,System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectManyInternal(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable`1<TResult> System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable`1<TResult> System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Object[],System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.String,System.String,System.Object[],System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.String,System.String,System.Object[],System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SelectMany(System.Linq.IQueryable,System.String,System.String,System.String,System.String,System.Object[],System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Single(System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Single(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Single(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Single(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::SingleOrDefault(System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::SingleOrDefault(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::SingleOrDefault(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::SingleOrDefault(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Skip(System.Linq.IQueryable,System.Int32)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SkipWhile(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::SkipWhile(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Sum(System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Sum(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Sum(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Sum(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Take(System.Linq.IQueryable,System.Int32)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::TakeWhile(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::TakeWhile(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::ThenBy(System.Linq.IOrderedQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::ThenBy(System.Linq.IOrderedQueryable`1<TSource>,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::ThenBy(System.Linq.IOrderedQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::ThenBy(System.Linq.IOrderedQueryable`1<TSource>,System.String,System.Collections.IComparer,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::ThenBy(System.Linq.IOrderedQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::ThenBy(System.Linq.IOrderedQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::InternalThenBy(System.Linq.IOrderedQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::ThenBy(System.Linq.IOrderedQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::ThenBy(System.Linq.IOrderedQueryable,System.String,System.Collections.IComparer,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::Where(System.Linq.IQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::Where(System.Linq.IQueryable`1<TSource>,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Where(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Where(System.Linq.IQueryable,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::Where(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableExtensions::Where(System.Linq.IQueryable`1<TSource>,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicQueryableExtensions::SupportsLinqToObjects(System.Linq.Dynamic.Core.ParsingConfig,System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicQueryableExtensions::CheckOuterAndInnerTypes(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.Type,System.String,System.String,System.Linq.Expressions.LambdaExpression&,System.Linq.Expressions.LambdaExpression&,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::CreateQuery(System.Reflection.MethodInfo,System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::CreateQuery(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableExtensions::CreateQuery(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Execute(System.Reflection.MethodInfo,System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- TResult System.Linq.Dynamic.Core.DynamicQueryableExtensions::Execute(System.Reflection.MethodInfo,System.Linq.IQueryable)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Execute(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableExtensions::Execute(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- TResult System.Linq.Dynamic.Core.DynamicQueryableExtensions::Execute(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
- TResult System.Linq.Dynamic.Core.DynamicQueryableExtensions::Execute(System.Reflection.MethodInfo,System.Linq.IQueryable,System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- TResult System.Linq.Dynamic.Core.DynamicQueryableExtensions::ConvertResultIfNeeded(System.Object)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.LambdaExpression System.Linq.Dynamic.Core.DynamicQueryableExtensions::EnsureLambdaExpressionReturnsObject(System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicQueryableExtensions::.cctor()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicQueryableExtensions/<AsDynamicEnumerable>d__16
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicQueryableExtensions/<AsDynamicEnumerable>d__16::MoveNext()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::WhereInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::WhereInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::WhereInterpolated(System.Linq.IQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::WhereInterpolated(System.Linq.IQueryable`1<TSource>,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::AllInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::AllInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::AnyInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::AnyInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Double System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::AverageInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Double System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::AverageInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SingleInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SingleInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SingleOrDefaultInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SingleOrDefaultInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SkipWhileInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SkipWhileInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::TakeWhileInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::TakeWhileInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SumInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SumInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::CountInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::CountInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::FirstInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::FirstInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::FirstOrDefaultInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::FirstOrDefaultInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::LastInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::LastInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::LastOrDefaultInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::LastOrDefaultInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int64 System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::LongCountInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int64 System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::LongCountInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::MaxInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::MaxInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::MinInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::MinInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable`1<TResult> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable`1<TResult> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectManyInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectManyInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectManyInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectManyInterpolated(System.Linq.IQueryable,System.FormattableString,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectManyInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectManyInterpolated(System.Linq.IQueryable,System.Type,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable`1<TResult> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectManyInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IQueryable`1<TResult> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::SelectManyInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::OrderByInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString,System.Collections.IComparer)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::OrderByInterpolated(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::OrderByInterpolated(System.Linq.IQueryable,System.FormattableString,System.Collections.IComparer)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::OrderByInterpolated(System.Linq.IQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::OrderByInterpolated(System.Linq.IQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString,System.Collections.IComparer)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::OrderByInterpolated(System.Linq.IQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::OrderByInterpolated(System.Linq.IQueryable`1<TSource>,System.FormattableString,System.Collections.IComparer)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::OrderByInterpolated(System.Linq.IQueryable`1<TSource>,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ThenByInterpolated(System.Linq.IOrderedQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString,System.Collections.IComparer)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ThenByInterpolated(System.Linq.IOrderedQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ThenByInterpolated(System.Linq.IOrderedQueryable,System.FormattableString,System.Collections.IComparer)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ThenByInterpolated(System.Linq.IOrderedQueryable,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ThenByInterpolated(System.Linq.IOrderedQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString,System.Collections.IComparer)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ThenByInterpolated(System.Linq.IOrderedQueryable`1<TSource>,System.Linq.Dynamic.Core.ParsingConfig,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ThenByInterpolated(System.Linq.IOrderedQueryable`1<TSource>,System.FormattableString,System.Collections.IComparer)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.IOrderedQueryable`1<TSource> System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ThenByInterpolated(System.Linq.IOrderedQueryable`1<TSource>,System.FormattableString)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::ParseFormattableString(System.FormattableString,System.Object[]&)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.DynamicQueryableWithFormattableStringExtensions::.cctor()
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.ExtensibilityPoint
-
-
-
-
- System.Void System.Linq.Dynamic.Core.ExtensibilityPoint::.cctor()
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.GroupResult
-
-
-
-
- System.Object System.Linq.Dynamic.Core.GroupResult::get_Key()
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.GroupResult::get_Count()
-
-
-
-
-
-
-
-
-
-
- System.Collections.IEnumerable System.Linq.Dynamic.Core.GroupResult::get_Items()
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.IEnumerable`1<System.Linq.Dynamic.Core.GroupResult> System.Linq.Dynamic.Core.GroupResult::get_Subgroups()
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.GroupResult::ToString()
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.PagedResult
-
-
-
-
- System.Linq.IQueryable System.Linq.Dynamic.Core.PagedResult::get_Queryable()
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.PagedResult::get_CurrentPage()
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.PagedResult::get_PageCount()
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.PagedResult::get_PageSize()
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.PagedResult::get_RowCount()
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.PagedResult`1
-
-
-
-
- System.Linq.IQueryable`1<TSource> System.Linq.Dynamic.Core.PagedResult`1::get_Queryable()
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.ParameterExpressionHelper
-
-
-
-
- System.Linq.Expressions.ParameterExpression System.Linq.Dynamic.Core.ParameterExpressionHelper::CreateParameterExpression(System.Type,System.String,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.ParameterExpressionHelper::GenerateRandomWord()
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.ParsingConfig
-
-
-
-
- System.Linq.Dynamic.Core.ParsingConfig System.Linq.Dynamic.Core.ParsingConfig::get_Default()
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.ParsingConfig System.Linq.Dynamic.Core.ParsingConfig::get_DefaultEFCore21()
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.ParsingConfig System.Linq.Dynamic.Core.ParsingConfig::get_DefaultCosmosDb()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_IsCaseSensitive()
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider System.Linq.Dynamic.Core.ParsingConfig::get_CustomTypeProvider()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.ParsingConfig::set_CustomTypeProvider(System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.ParsingConfig::UseDefaultDynamicLinqCustomTypeProvider(System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.ParsingConfig::UseDefaultDynamicLinqCustomTypeProvider(System.Collections.Generic.IList`1<System.Type>,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_LoadAdditionalAssembliesFromCurrentDomainBaseDirectory()
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.IExpressionPromoter System.Linq.Dynamic.Core.ParsingConfig::get_ExpressionPromoter()
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.ParsingConfig::set_ExpressionPromoter(System.Linq.Dynamic.Core.Parser.IExpressionPromoter)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.IQueryableAnalyzer System.Linq.Dynamic.Core.ParsingConfig::get_QueryableAnalyzer()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.ParsingConfig::set_QueryableAnalyzer(System.Linq.Dynamic.Core.IQueryableAnalyzer)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_AreContextKeywordsEnabled()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_EvaluateGroupByAtDatabase()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_UseParameterizedNamesInDynamicQuery()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_AllowNewToEvaluateAnyType()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_RenameParameterExpression()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_RenameEmptyParameterExpressionNames()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_DisableMemberAccessToIndexAccessorFallback()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_ResolveTypesBySimpleName()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_SupportEnumerationsFromSystemNamespace()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_DateTimeIsParsedAsUTC()
-
-
-
-
-
-
-
-
-
-
- System.Globalization.CultureInfo System.Linq.Dynamic.Core.ParsingConfig::get_NumberParseCulture()
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.IDictionary`2<System.Type,System.ComponentModel.TypeConverter> System.Linq.Dynamic.Core.ParsingConfig::get_TypeConverters()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_NullPropagatingUseDefaultValueForNonNullableValueTypes()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_SupportCastingToFullyQualifiedTypeAsString()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_PrioritizePropertyOrFieldOverTheType()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_SupportDotInPropertyNames()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_DisallowNewKeyword()
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Util.Cache.CacheConfig System.Linq.Dynamic.Core.ParsingConfig::get_ConstantExpressionCacheConfig()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_ConvertObjectToSupportComparison()
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Config.StringLiteralParsingType System.Linq.Dynamic.Core.ParsingConfig::get_StringLiteralParsing()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_RestrictOrderByToPropertyOrField()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.ParsingConfig::get_AllowEqualsAndToStringMethodsOnObject()
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.ParsingConfig::.cctor()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Validation.Check
-
-
-
-
- System.Object[] System.Linq.Dynamic.Core.Validation.Check::Args(System.Object[],System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- T System.Linq.Dynamic.Core.Validation.Check::Condition(T,System.Predicate`1<T>,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- T System.Linq.Dynamic.Core.Validation.Check::NotNull(T,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- T System.Linq.Dynamic.Core.Validation.Check::NotNull(T,System.String,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.IEnumerable`1<T> System.Linq.Dynamic.Core.Validation.Check::NotNullOrEmpty(System.Collections.Generic.IEnumerable`1<T>,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Validation.Check::NotEmpty(System.String,System.String)
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Validation.Check::NotNullOrEmpty(System.String,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Validation.Check::NotNullOrWhiteSpace(System.String,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.IEnumerable`1<T> System.Linq.Dynamic.Core.Validation.Check::HasNoNulls(System.Collections.Generic.IEnumerable`1<T>,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Validation.CoreStrings
-
-
-
-
- System.String System.Linq.Dynamic.Core.Validation.CoreStrings::ArgumentPropertyNull(System.String,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Validation.CoreStrings::ArgumentIsEmpty(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Validation.CoreStrings::CollectionArgumentIsEmpty(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Util.DateTimeUtils
-
-
-
-
- System.DateTime System.Linq.Dynamic.Core.Util.DateTimeUtils::get_UtcNow()
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Util.ParameterExpressionRenamer
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Util.ParameterExpressionRenamer::Rename(System.Linq.Expressions.Expression,System.Linq.Expressions.ParameterExpression&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Util.ParameterExpressionRenamer::VisitParameter(System.Linq.Expressions.ParameterExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Util.ParameterExpressionRenamer::.ctor(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Util.ParameterExpressionRenamer::.ctor(System.String,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Util.QueryableMethodFinder
-
-
-
-
- System.Reflection.MethodInfo System.Linq.Dynamic.Core.Util.QueryableMethodFinder::GetGenericMethod(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Reflection.MethodInfo System.Linq.Dynamic.Core.Util.QueryableMethodFinder::GetMethod(System.String,System.Type,System.Type,System.Int32,System.Func`2<System.Reflection.MethodInfo,System.Boolean>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Reflection.MethodInfo System.Linq.Dynamic.Core.Util.QueryableMethodFinder::GetMethod(System.String,System.Type,System.Int32,System.Func`2<System.Reflection.MethodInfo,System.Boolean>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Reflection.MethodInfo System.Linq.Dynamic.Core.Util.QueryableMethodFinder::GetMethodWithExpressionParameter(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Reflection.MethodInfo System.Linq.Dynamic.Core.Util.QueryableMethodFinder::GetMethodWithIntParameter(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Reflection.MethodInfo System.Linq.Dynamic.Core.Util.QueryableMethodFinder::GetMethod(System.String,System.Int32,System.Func`2<System.Reflection.MethodInfo,System.Boolean>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Util.RuntimeInformationUtils
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Util.RuntimeInformationUtils::.cctor()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Util.TaskUtils
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Util.TaskUtils::Run(System.Action)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Util.Cache.CacheConfig
-
-
-
-
- System.TimeSpan System.Linq.Dynamic.Core.Util.Cache.CacheConfig::get_TimeToLive()
-
-
-
-
-
-
-
-
-
-
- System.Nullable`1<System.Int32> System.Linq.Dynamic.Core.Util.Cache.CacheConfig::get_MinItemsTrigger()
-
-
-
-
-
-
-
-
-
-
- System.TimeSpan System.Linq.Dynamic.Core.Util.Cache.CacheConfig::get_CleanupFrequency()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Util.Cache.CacheConfig::get_ReturnExpiredItems()
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Util.Cache.CacheEntry`1
-
-
-
-
- TValue System.Linq.Dynamic.Core.Util.Cache.CacheEntry`1::get_Value()
-
-
-
-
-
-
-
-
-
-
- System.DateTime System.Linq.Dynamic.Core.Util.Cache.CacheEntry`1::get_ExpirationTime()
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Util.Cache.CacheEntry`1::.ctor(TValue,System.DateTime)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2
-
-
-
-
- System.TimeSpan System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::get_TimeToLive()
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::get_Count()
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::AddOrUpdate(TKey,TValue)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::TryGetValue(TKey,TValue&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::Remove(TKey)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::CleanupIfNeeded()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::Cleanup()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::.ctor(System.TimeSpan,System.Nullable`1<System.TimeSpan>,System.Nullable`1<System.Int64>,System.Linq.Dynamic.Core.Util.IDateTimeUtils,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Util.Cache.SlidingCache`2::.ctor(System.Linq.Dynamic.Core.Util.Cache.CacheConfig,System.Linq.Dynamic.Core.Util.IDateTimeUtils)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Util.Cache.SlidingCacheConstants
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Util.Cache.SlidingCacheConstants::.cctor()
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.TypeConverters.CustomDateTimeConverter
-
-
-
-
- System.Object System.Linq.Dynamic.Core.TypeConverters.CustomDateTimeConverter::ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.TypeConverters.TypeConverterFactory
-
-
-
-
- System.ComponentModel.TypeConverter System.Linq.Dynamic.Core.TypeConverters.TypeConverterFactory::GetConverter(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.TypeConverters.TypeConverterFactory::.ctor(System.Linq.Dynamic.Core.ParsingConfig)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Tokenizer.TextParser
-
-
-
-
- System.Linq.Dynamic.Core.Tokenizer.TextParser System.Linq.Dynamic.Core.Tokenizer.TextParser::Clone()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Char System.Linq.Dynamic.Core.Tokenizer.TextParser::PeekNextChar()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::NextToken()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::ValidateToken(System.Linq.Dynamic.Core.Tokenizer.TokenId,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Tokenizer.TextParser::TokenIsIdentifier(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Tokenizer.TextParser::TryGetToken(System.String[],System.Linq.Dynamic.Core.Tokenizer.TokenId[],System.Linq.Dynamic.Core.Tokenizer.Token&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::SetTextPos(System.Int32)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::NextChar()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::ValidateExpression()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::ValidateDigit()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::ValidateHexChar()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::ValidateBinaryChar()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Exception System.Linq.Dynamic.Core.Tokenizer.TextParser::ParseError(System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Tokenizer.TokenId System.Linq.Dynamic.Core.Tokenizer.TextParser::GetAliasedTokenId(System.Linq.Dynamic.Core.Tokenizer.TokenId,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Exception System.Linq.Dynamic.Core.Tokenizer.TextParser::ParseError(System.Int32,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Tokenizer.TextParser::IsHexChar(System.Char)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Tokenizer.TextParser::IsZeroOrOne(System.Char)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::.ctor(System.Linq.Dynamic.Core.ParsingConfig,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Tokenizer.TextParser::.cctor()
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Tokenizer.Token
-
-
-
-
- System.Linq.Dynamic.Core.Tokenizer.TokenId System.Linq.Dynamic.Core.Tokenizer.Token::get_Id()
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Tokenizer.TokenId System.Linq.Dynamic.Core.Tokenizer.Token::get_OriginalId()
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Tokenizer.Token::get_Text()
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.Tokenizer.Token::get_Pos()
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.ConstantExpressionHelper
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ConstantExpressionHelper::TryGetText(System.Linq.Expressions.Expression,System.String&)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ConstantExpressionHelper::CreateLiteral(System.Object,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ConstantExpressionHelper::.ctor(System.Linq.Dynamic.Core.ParsingConfig)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.ConstantExpressionHelperFactory
-
-
-
-
- System.Linq.Dynamic.Core.Parser.ConstantExpressionHelper System.Linq.Dynamic.Core.Parser.ConstantExpressionHelperFactory::GetInstance(System.Linq.Dynamic.Core.ParsingConfig)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ConstantExpressionHelperFactory::.cctor()
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.ConstantExpressionWrapper
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ConstantExpressionWrapper::Wrap(System.Linq.Expressions.Expression&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ConstantExpressionWrapper::TryUnwrapAsValue(System.Linq.Expressions.MemberExpression,TValue&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ConstantExpressionWrapper::TryUnwrapAsConstantExpression(System.Linq.Expressions.MemberExpression,System.Linq.Expressions.ConstantExpression&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.MemberExpression System.Linq.Dynamic.Core.Parser.ConstantExpressionWrapper::Wrap(TValue)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.Constants
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.Constants::IsNull(System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.EnumerationsFromMscorlib
-
-
-
-
- System.Collections.Generic.IEnumerable`1<System.Type> System.Linq.Dynamic.Core.Parser.EnumerationsFromMscorlib::AddEnumsFromAssembly(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.EnumerationsFromMscorlib::Add(System.Linq.IGrouping`2<System.String,System.Type>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.EnumerationsFromMscorlib::.cctor()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.ExpressionHelper
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ExpressionHelper::WrapConstantExpression(System.Linq.Expressions.Expression&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::TryUnwrapAsValue(System.Linq.Expressions.Expression,TValue&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::TryUnwrapAsConstantExpression(System.Linq.Expressions.Expression,System.Linq.Expressions.ConstantExpression&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::ConvertNumericTypeToBiggestCommonTypeForBinaryOperator(System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateAdd(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateStringConcat(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateSubtract(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateEqual(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateNotEqual(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateGreaterThan(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateGreaterThanEqual(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateLessThan(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateLessThanEqual(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ExpressionHelper::OptimizeForEqualityIfPossible(System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::OptimizeStringForEqualityIfPossible(System.String,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::MemberExpressionIsDynamic(System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::ConvertToExpandoObjectAndCreateDynamicExpression(System.Linq.Expressions.Expression,System.Type,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ExpressionHelper::WrapConstantExpressions(System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::TryGenerateAndAlsoNotNullExpression(System.Linq.Expressions.Expression,System.Boolean,System.Linq.Expressions.Expression&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::ExpressionQualifiesForNullPropagation(System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateDefaultExpression(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::ConvertAnyArrayToObjectArray(System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::TryConvertTypes(System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GetMemberExpression(System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.List`1<System.Linq.Expressions.Expression> System.Linq.Dynamic.Core.Parser.ExpressionHelper::CollectExpressions(System.Boolean,System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GenerateStaticMethodCall(System.String,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::TryGetStaticMethod(System.String,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GetMethodCallExpression(System.Linq.Expressions.MethodCallExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionHelper::GetUnaryExpression(System.Linq.Expressions.UnaryExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object[] System.Linq.Dynamic.Core.Parser.ExpressionHelper::ConvertIfIEnumerableHasValues(System.Collections.IEnumerable)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionHelper::TryGetAsIndexerExpression(System.Linq.Expressions.Expression,System.Linq.Expressions.ConditionalExpression&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ExpressionHelper::.ctor(System.Linq.Dynamic.Core.ParsingConfig)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ExpressionHelper::.cctor()
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.ExpressionParser
-
-
-
-
- System.String System.Linq.Dynamic.Core.Parser.ExpressionParser::get_ItName()
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Parser.ExpressionParser::get_LastLambdaItName()
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ExpressionParser::ProcessParameters(System.Linq.Expressions.ParameterExpression[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ExpressionParser::ProcessValues(System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ExpressionParser::AddSymbol(System.String,System.Object)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::Parse(System.Type,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseOutKeyword()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.IList`1<System.Linq.Dynamic.Core.DynamicOrdering> System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseOrdering(System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseConditionalOperator()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseNullCoalescingOperator()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseLambdaOperator()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseOrOperator()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseAndOperator()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseIn()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseLogicalAndOrOperator()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseComparisonOperator()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionParser::HasImplicitConversion(System.Type,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.ConstantExpression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseEnumToConstantExpression(System.Int32,System.Type,System.Linq.Expressions.ConstantExpression)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseConstantExpressionToEnum(System.Int32,System.Type,System.Linq.Expressions.ConstantExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseShiftOperator()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseAdditive()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseArithmetic()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseUnary()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParsePrimary()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParsePrimaryStart()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseStringLiteralAsStringExpressionOrTypeExpression()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- AnyOfTypes.AnyOf`2<System.Linq.Expressions.Expression,System.Type> System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseStringLiteral(System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseStringAndEscape(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseIntegerLiteral()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseRealLiteral()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseParenExpression()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseIdentifier()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseIt()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseParent()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseRoot()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseFunctionIsNull()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseFunctionIIF()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseFunctionNullPropagation()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseFunctionIs()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseFunctionAs()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseFunctionCast()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::GenerateConditional(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Int32)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseNew()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::CreateArrayInitializerExpression(System.Collections.Generic.List`1<System.Linq.Expressions.Expression>,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::CreateNewExpression(System.Collections.Generic.List`1<System.Linq.Dynamic.Core.DynamicProperty>,System.Collections.Generic.List`1<System.Linq.Expressions.Expression>,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseLambdaInvocation(System.Linq.Expressions.LambdaExpression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseTypeAccess(System.Type,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionParser::TryGenerateConversion(System.Linq.Expressions.Expression,System.Type,System.Linq.Expressions.Expression&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseMemberAccess(System.Type,System.Linq.Expressions.Expression,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionParser::TryFindPropertyOrField(System.Type,System.String,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::CallMethod(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseAsLambda(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseAsEnumOrNestedClass(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionParser::TryParseEnumerable(System.Linq.Expressions.Expression,System.Type,System.String,System.Type,System.Linq.Expressions.Expression[]&,System.Linq.Expressions.Expression&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Linq.Dynamic.Core.Parser.ExpressionParser::ResolveTypeFromArgumentExpression(System.String,System.Linq.Expressions.Expression,System.Nullable`1<System.Int32>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Linq.Dynamic.Core.Parser.ExpressionParser::ResolveTypeFromExpressionValue(System.String,System.Linq.Expressions.ConstantExpression,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Linq.Dynamic.Core.Parser.ExpressionParser::ResolveTypeStringFromArgument(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression[] System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseArgumentList()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression[] System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseArguments()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseElementAccess(System.Linq.Expressions.Expression)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Linq.Dynamic.Core.Parser.ExpressionParser::ToNullableType(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionParser::TryGetMemberName(System.Linq.Expressions.Expression,System.String&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ExpressionParser::CheckAndPromoteOperand(System.Type,System.String,System.Linq.Expressions.Expression&,System.Int32)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionParser::TryGetOverloadedEqualityOperator(System.Linq.Dynamic.Core.Tokenizer.TokenId,System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression[]&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionParser::TryGetOverloadedImplicitOperator(System.Linq.Dynamic.Core.Tokenizer.TokenId,System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ExpressionParser::CheckAndPromoteOperands(System.Type,System.Linq.Dynamic.Core.Tokenizer.TokenId,System.String,System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression&,System.Int32)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Exception System.Linq.Dynamic.Core.Parser.ExpressionParser::IncompatibleOperandError(System.String,System.Linq.Expressions.Expression,System.Int32)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Exception System.Linq.Dynamic.Core.Parser.ExpressionParser::IncompatibleOperandsError(System.String,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Int32)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Reflection.MemberInfo System.Linq.Dynamic.Core.Parser.ExpressionParser::FindPropertyOrField(System.Type,System.String,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.ExpressionParser::TokenIsIdentifier(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Parser.ExpressionParser::GetIdentifier()
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Parser.ExpressionParser::GetIdentifierAs()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Parser.ExpressionParser::SanitizeId(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Exception System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseError(System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Exception System.Linq.Dynamic.Core.Parser.ExpressionParser::ParseError(System.Int32,System.String,System.Object[])
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ExpressionParser::.ctor(System.Linq.Expressions.ParameterExpression[],System.String,System.Object[],System.Linq.Dynamic.Core.ParsingConfig)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ExpressionParser::.ctor(System.Linq.Expressions.ParameterExpression[],System.String,System.Object[],System.Linq.Dynamic.Core.ParsingConfig,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ExpressionParser::.cctor()
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.ExpressionPromoter
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.ExpressionPromoter::Promote(System.Linq.Expressions.Expression,System.Type,System.Boolean,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.ExpressionPromoter::.ctor(System.Linq.Dynamic.Core.ParsingConfig)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.KeywordsHelper
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.KeywordsHelper::IsItOrRootOrParent(AnyOfTypes.AnyOf`3<System.String,System.Linq.Expressions.Expression,System.Type>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.KeywordsHelper::TryGetValue(System.String,AnyOfTypes.AnyOf`3<System.String,System.Linq.Expressions.Expression,System.Type>&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.KeywordsHelper::.cctor()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.KeywordsHelper::.ctor(System.Linq.Dynamic.Core.ParsingConfig)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.NumberParser
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.NumberParser::ParseIntegerLiteral(System.Int32,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.NumberParser::ParseRealLiteral(System.String,System.String,System.Char,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.NumberParser::TryParseNumber(System.String,System.Type,System.Object&)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object System.Linq.Dynamic.Core.Parser.NumberParser::ParseNumber(System.String,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression System.Linq.Dynamic.Core.Parser.NumberParser::ParseAsBinary(System.Int32,System.String,System.String,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.NumberParser::.ctor(System.Linq.Dynamic.Core.ParsingConfig)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.NumberParser::.cctor()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.PredefinedMethodsHelper
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.PredefinedMethodsHelper::IsPredefinedMethod(System.Linq.Dynamic.Core.ParsingConfig,System.Reflection.MemberInfo)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.PredefinedMethodsHelper::.cctor()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.PredefinedTypesHelper
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.PredefinedTypesHelper::TryAdd(System.String,System.Int32)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.PredefinedTypesHelper::IsPredefinedType(System.Linq.Dynamic.Core.ParsingConfig,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.PredefinedTypesHelper::.cctor()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.StringParser
-
-
-
-
- System.String System.Linq.Dynamic.Core.Parser.StringParser::ParseStringAndUnescape(System.String,System.Int32)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Parser.StringParser::ParseStringAndUnescapeTwoDoubleQuotesByASingleDoubleQuote(System.String,System.Int32)
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Parser.StringParser::ReplaceTwoDoubleQuotesByASingleDoubleQuote(System.String,System.Int32)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.TypeFinder
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeFinder::TryFindTypeByName(System.String,System.Linq.Expressions.ParameterExpression[],System.Boolean,System.Type&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeFinder::TryResolveTypeByUsingCustomTypeProvider(System.String,System.Boolean,System.Type&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeFinder::TryResolveTypeUsingExpressions(System.String,System.Linq.Expressions.ParameterExpression[],System.Type&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.TypeFinder::.ctor(System.Linq.Dynamic.Core.ParsingConfig,System.Linq.Dynamic.Core.Parser.IKeywordsHelper)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.TypeHelper
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsDynamicClass(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::TryGetAsEnumerable(System.Type,System.Type&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::TryGetFirstGenericArgument(System.Type,System.Type&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::TryFindGenericType(System.Type,System.Type,System.Type&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsCompatibleWith(System.Type,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsClass(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsStruct(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsEnumType(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsNumericType(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsNullableType(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::TypeCanBeNull(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Linq.Dynamic.Core.Parser.TypeHelper::ToNullableType(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsSignedIntegralType(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsUnsignedIntegralType(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.Parser.TypeHelper::GetNumericTypeKind(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Parser.TypeHelper::GetTypeName(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Linq.Dynamic.Core.Parser.TypeHelper::GetNullableType(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Linq.Dynamic.Core.Parser.TypeHelper::GetNonNullableType(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Linq.Dynamic.Core.Parser.TypeHelper::GetUnderlyingType(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::TypesAreEqual(System.Type,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.IList`1<System.Type> System.Linq.Dynamic.Core.Parser.TypeHelper::GetSelfAndBaseTypes(System.Type,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.TypeHelper::AddInterface(System.Collections.Generic.ICollection`1<System.Type>,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::TryParseEnum(System.String,System.Type,System.Object&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper::IsDictionary(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.TypeHelper/<GetSelfAndBaseClasses>d__21
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.TypeHelper/<GetSelfAndBaseClasses>d__21::MoveNext()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.WrappedValue`1
-
-
-
-
- TValue System.Linq.Dynamic.Core.Parser.WrappedValue`1::get_Value()
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.WrappedValue`1::op_Equality(System.Linq.Dynamic.Core.Parser.WrappedValue`1<TValue>,System.Linq.Dynamic.Core.Parser.WrappedValue`1<TValue>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.WrappedValue`1::op_Inequality(System.Linq.Dynamic.Core.Parser.WrappedValue`1<TValue>,System.Linq.Dynamic.Core.Parser.WrappedValue`1<TValue>)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.WrappedValue`1::op_Equality(System.Linq.Dynamic.Core.Parser.WrappedValue`1<TValue>,TValue)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.WrappedValue`1::op_Inequality(System.Linq.Dynamic.Core.Parser.WrappedValue`1<TValue>,TValue)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.WrappedValue`1::op_Equality(TValue,System.Linq.Dynamic.Core.Parser.WrappedValue`1<TValue>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.WrappedValue`1::op_Inequality(TValue,System.Linq.Dynamic.Core.Parser.WrappedValue`1<TValue>)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.WrappedValue`1::Equals(System.Object)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.Parser.WrappedValue`1::GetHashCode()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.WrappedValue`1::.ctor(TValue)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodData
-
-
-
-
- System.Reflection.MethodBase System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodData::get_MethodBase()
-
-
-
-
-
-
-
-
-
-
- System.Reflection.ParameterInfo[] System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodData::get_Parameters()
-
-
-
-
-
-
-
-
-
-
- System.Linq.Expressions.Expression[] System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodData::get_Args()
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::TryFindAggregateMethod(System.Type,System.String,System.Type,System.Reflection.MethodInfo&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::CheckAggregateMethodAndTryUpdateArgsToMatchMethodArgs(System.String,System.Linq.Expressions.Expression[]&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::ContainsMethod(System.Type,System.String,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::ContainsMethod(System.Type,System.String,System.Boolean,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression[]&)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::FindMethod(System.Type,System.String,System.Boolean,System.Linq.Expressions.Expression&,System.Linq.Expressions.Expression[]&,System.Reflection.MethodBase&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::FindBestMethodBasedOnArguments(System.Collections.Generic.IEnumerable`1<System.Reflection.MethodBase>,System.Linq.Expressions.Expression[]&,System.Reflection.MethodBase&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::FindIndexer(System.Type,System.Linq.Expressions.Expression[],System.Reflection.MethodBase&)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::IsApplicable(System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodData,System.Linq.Expressions.Expression[])
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::FirstIsBetterThanSecond(System.Linq.Expressions.Expression[],System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodData,System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodData)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.SupportedMethods.CompareConversionType System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::CompareConversions(System.Type,System.Type,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.IEnumerable`1<System.Type> System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::SelfAndBaseTypes(System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::AddInterfaces(System.Collections.Generic.ICollection`1<System.Type>,System.Type)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder::.ctor(System.Linq.Dynamic.Core.ParsingConfig,System.Linq.Dynamic.Core.Parser.IExpressionHelper)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder/<SelfAndBaseClasses>d__16
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Parser.SupportedMethods.MethodFinder/<SelfAndBaseClasses>d__16::MoveNext()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Extensions.ListExtensions
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Extensions.ListExtensions::AddIfNotNull(System.Collections.Generic.IList`1<T>,T)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Extensions.TokenIdExtensions
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Extensions.TokenIdExtensions::IsEqualityOperator(System.Linq.Dynamic.Core.Tokenizer.TokenId)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean System.Linq.Dynamic.Core.Extensions.TokenIdExtensions::IsComparisonOperator(System.Linq.Dynamic.Core.Tokenizer.TokenId)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.Exceptions.ParseException
-
-
-
-
- System.Int32 System.Linq.Dynamic.Core.Exceptions.ParseException::get_Position()
-
-
-
-
-
-
-
-
-
-
- System.String System.Linq.Dynamic.Core.Exceptions.ParseException::ToString()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Exceptions.ParseException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Exceptions.ParseException::.ctor(System.String,System.Exception)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Exceptions.ParseException::.ctor(System.String,System.Int32,System.Exception)
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.Exceptions.ParseException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider
-
-
-
-
- System.Type[] System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider::FindTypesMarkedWithDynamicLinqTypeAttribute(System.Collections.Generic.IEnumerable`1<System.Reflection.Assembly>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider::ResolveType(System.Collections.Generic.IEnumerable`1<System.Reflection.Assembly>,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider::ResolveTypeBySimpleName(System.Collections.Generic.IEnumerable`1<System.Reflection.Assembly>,System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type[] System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider::GetAssemblyTypesWithDynamicLinqTypeAttribute(System.Collections.Generic.IEnumerable`1<System.Reflection.Assembly>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider::.ctor(System.Collections.Generic.IList`1<System.Type>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider
-
-
-
-
- System.Collections.Generic.HashSet`1<System.Type> System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::GetCustomTypes()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.List`1<System.Reflection.MethodInfo>> System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::GetExtensionMethods()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::ResolveType(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::ResolveTypeBySimpleName(System.String)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.HashSet`1<System.Type> System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::GetCustomTypesInternal()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Collections.Generic.Dictionary`2<System.Type,System.Collections.Generic.List`1<System.Reflection.MethodInfo>> System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::GetExtensionMethodsInternal()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::.ctor(System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::.ctor(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider::.ctor(System.Linq.Dynamic.Core.ParsingConfig,System.Collections.Generic.IList`1<System.Type>,System.Boolean)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- AnyOfTypes.AnyOf`2
-
-
-
-
- System.String AnyOfTypes.AnyOf`2::get__thisType()
-
-
-
-
-
-
-
-
-
-
- AnyOfTypes.AnyOfType[] AnyOfTypes.AnyOf`2::get_AnyOfTypes()
-
-
-
-
-
-
-
-
-
-
- System.Type[] AnyOfTypes.AnyOf`2::get_Types()
-
-
-
-
-
-
-
-
-
-
- System.Boolean AnyOfTypes.AnyOf`2::get_IsUndefined()
-
-
-
-
-
-
-
-
-
-
- System.Boolean AnyOfTypes.AnyOf`2::get_IsFirst()
-
-
-
-
-
-
-
-
-
-
- System.Boolean AnyOfTypes.AnyOf`2::get_IsSecond()
-
-
-
-
-
-
-
-
-
-
- AnyOfTypes.AnyOf`2<TFirst,TSecond> AnyOfTypes.AnyOf`2::op_Implicit(TFirst)
-
-
-
-
-
-
-
-
-
-
- TFirst AnyOfTypes.AnyOf`2::op_Implicit(AnyOfTypes.AnyOf`2<TFirst,TSecond>)
-
-
-
-
-
-
-
-
-
-
- TFirst AnyOfTypes.AnyOf`2::get_First()
-
-
-
-
-
-
-
-
-
-
-
-
-
- AnyOfTypes.AnyOf`2<TFirst,TSecond> AnyOfTypes.AnyOf`2::op_Implicit(TSecond)
-
-
-
-
-
-
-
-
-
-
- TSecond AnyOfTypes.AnyOf`2::op_Implicit(AnyOfTypes.AnyOf`2<TFirst,TSecond>)
-
-
-
-
-
-
-
-
-
-
- TSecond AnyOfTypes.AnyOf`2::get_Second()
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void AnyOfTypes.AnyOf`2::Validate(AnyOfTypes.AnyOfType)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- AnyOfTypes.AnyOfType AnyOfTypes.AnyOf`2::get_CurrentType()
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object AnyOfTypes.AnyOf`2::get_CurrentValue()
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type AnyOfTypes.AnyOf`2::get_CurrentValueType()
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int32 AnyOfTypes.AnyOf`2::GetHashCode()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean AnyOfTypes.AnyOf`2::Equals(AnyOfTypes.AnyOf`2<TFirst,TSecond>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean AnyOfTypes.AnyOf`2::op_Equality(AnyOfTypes.AnyOf`2<TFirst,TSecond>,AnyOfTypes.AnyOf`2<TFirst,TSecond>)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean AnyOfTypes.AnyOf`2::op_Inequality(AnyOfTypes.AnyOf`2<TFirst,TSecond>,AnyOfTypes.AnyOf`2<TFirst,TSecond>)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean AnyOfTypes.AnyOf`2::Equals(System.Object)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.String AnyOfTypes.AnyOf`2::ToString()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void AnyOfTypes.AnyOf`2::.ctor(TFirst)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void AnyOfTypes.AnyOf`2::.ctor(TSecond)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- AnyOfTypes.AnyOf`3
-
-
-
-
- System.String AnyOfTypes.AnyOf`3::get__thisType()
-
-
-
-
-
-
-
-
-
-
- AnyOfTypes.AnyOfType[] AnyOfTypes.AnyOf`3::get_AnyOfTypes()
-
-
-
-
-
-
-
-
-
-
- System.Type[] AnyOfTypes.AnyOf`3::get_Types()
-
-
-
-
-
-
-
-
-
-
- System.Boolean AnyOfTypes.AnyOf`3::get_IsUndefined()
-
-
-
-
-
-
-
-
-
-
- System.Boolean AnyOfTypes.AnyOf`3::get_IsFirst()
-
-
-
-
-
-
-
-
-
-
- System.Boolean AnyOfTypes.AnyOf`3::get_IsSecond()
-
-
-
-
-
-
-
-
-
-
- System.Boolean AnyOfTypes.AnyOf`3::get_IsThird()
-
-
-
-
-
-
-
-
-
-
- AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird> AnyOfTypes.AnyOf`3::op_Implicit(TFirst)
-
-
-
-
-
-
-
-
-
-
- TFirst AnyOfTypes.AnyOf`3::op_Implicit(AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird>)
-
-
-
-
-
-
-
-
-
-
- TFirst AnyOfTypes.AnyOf`3::get_First()
-
-
-
-
-
-
-
-
-
-
-
-
-
- AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird> AnyOfTypes.AnyOf`3::op_Implicit(TSecond)
-
-
-
-
-
-
-
-
-
-
- TSecond AnyOfTypes.AnyOf`3::op_Implicit(AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird>)
-
-
-
-
-
-
-
-
-
-
- TSecond AnyOfTypes.AnyOf`3::get_Second()
-
-
-
-
-
-
-
-
-
-
-
-
-
- AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird> AnyOfTypes.AnyOf`3::op_Implicit(TThird)
-
-
-
-
-
-
-
-
-
-
- TThird AnyOfTypes.AnyOf`3::op_Implicit(AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird>)
-
-
-
-
-
-
-
-
-
-
- TThird AnyOfTypes.AnyOf`3::get_Third()
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void AnyOfTypes.AnyOf`3::Validate(AnyOfTypes.AnyOfType)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- AnyOfTypes.AnyOfType AnyOfTypes.AnyOf`3::get_CurrentType()
-
-
-
-
-
-
-
-
-
-
-
-
- System.Object AnyOfTypes.AnyOf`3::get_CurrentValue()
-
-
-
-
-
-
-
-
-
-
-
-
- System.Type AnyOfTypes.AnyOf`3::get_CurrentValueType()
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int32 AnyOfTypes.AnyOf`3::GetHashCode()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean AnyOfTypes.AnyOf`3::Equals(AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird>)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean AnyOfTypes.AnyOf`3::op_Equality(AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird>,AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird>)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean AnyOfTypes.AnyOf`3::op_Inequality(AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird>,AnyOfTypes.AnyOf`3<TFirst,TSecond,TThird>)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Boolean AnyOfTypes.AnyOf`3::Equals(System.Object)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.String AnyOfTypes.AnyOf`3::ToString()
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void AnyOfTypes.AnyOf`3::.ctor(TFirst)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void AnyOfTypes.AnyOf`3::.ctor(TSecond)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- System.Void AnyOfTypes.AnyOf`3::.ctor(TThird)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- AnyOfTypes.HashCodeCalculator
-
-
-
-
- System.Int32 AnyOfTypes.HashCodeCalculator::GetHashCode(System.Collections.Generic.IEnumerable`1<System.Object>)
-
-
-
-
-
-
-
-
-
-
-
-
- System.Int32 AnyOfTypes.HashCodeCalculator::<GetHashCode>g__HashCodeAggregator|0_0(System.Int32,System.Object)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
From 02aa9d5e7412db80b64c0c1a824f78dc904b5d41 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Sun, 29 Mar 2026 06:32:53 +0000
Subject: [PATCH 4/6] Optimize implicit operator lookup in ExpressionPromoter
Agent-Logs-Url: https://github.com/zzzprojects/System.Linq.Dynamic.Core/sessions/82ed2f4e-0c76-407c-a330-d4043e96162f
Co-authored-by: StefH <249938+StefH@users.noreply.github.com>
---
.../Parser/ExpressionPromoter.cs | 16 ++++++++++++----
.../DynamicExpressionParserTests.cs | 2 +-
2 files changed, 13 insertions(+), 5 deletions(-)
diff --git a/src/System.Linq.Dynamic.Core/Parser/ExpressionPromoter.cs b/src/System.Linq.Dynamic.Core/Parser/ExpressionPromoter.cs
index 57b3df38..b27920b2 100644
--- a/src/System.Linq.Dynamic.Core/Parser/ExpressionPromoter.cs
+++ b/src/System.Linq.Dynamic.Core/Parser/ExpressionPromoter.cs
@@ -140,12 +140,20 @@ public ExpressionPromoter(ParsingConfig config)
// Look for op_Implicit on the source type or the target type.
var implicitOperator =
returnType.GetMethods(BindingFlags.Public | BindingFlags.Static)
- .Where(m => m.Name == "op_Implicit" && m.ReturnType == type)
- .FirstOrDefault(m => m.GetParameters().FirstOrDefault()?.ParameterType == returnType)
+ .FirstOrDefault(m =>
+ {
+ if (m.Name != "op_Implicit" || m.ReturnType != type) return false;
+ var parameters = m.GetParameters();
+ return parameters.Length == 1 && parameters[0].ParameterType == returnType;
+ })
??
type.GetMethods(BindingFlags.Public | BindingFlags.Static)
- .Where(m => m.Name == "op_Implicit" && m.ReturnType == type)
- .FirstOrDefault(m => m.GetParameters().FirstOrDefault()?.ParameterType == returnType);
+ .FirstOrDefault(m =>
+ {
+ if (m.Name != "op_Implicit" || m.ReturnType != type) return false;
+ var parameters = m.GetParameters();
+ return parameters.Length == 1 && parameters[0].ParameterType == returnType;
+ });
if (implicitOperator != null)
{
diff --git a/test/System.Linq.Dynamic.Core.Tests/DynamicExpressionParserTests.cs b/test/System.Linq.Dynamic.Core.Tests/DynamicExpressionParserTests.cs
index 67888150..b24a2bd2 100644
--- a/test/System.Linq.Dynamic.Core.Tests/DynamicExpressionParserTests.cs
+++ b/test/System.Linq.Dynamic.Core.Tests/DynamicExpressionParserTests.cs
@@ -1556,7 +1556,7 @@ public void DynamicExpressionParser_ParseLambda_With_Implicit_Operator_In_Method
var expression = $"{nameof(MyMethodsWithImplicitOperatorSupport)}.{nameof(MyMethodsWithImplicitOperatorSupport.UsesMyStructWithImplicitOperator)}(\"Foo\")";
// Act
- var parser = new ExpressionParser([], expression, [], ParsingConfig.Default);
+ var parser = new ExpressionParser(parameters: [], expression, values: [], ParsingConfig.Default);
var parsedExpression = parser.Parse(typeof(string));
var lambda = Expression.Lambda>(parsedExpression);
var method = lambda.Compile();
From d0cc881470e2073f0b803379dc3f9151ac265d3d Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Sun, 29 Mar 2026 06:45:09 +0000
Subject: [PATCH 5/6] Refactor: move implicit operator lookup to
TypeHelper.TryFindImplicitConversionOperator
Agent-Logs-Url: https://github.com/zzzprojects/System.Linq.Dynamic.Core/sessions/3d221836-ae46-4e82-b79f-a67b544ee3af
Co-authored-by: StefH <249938+StefH@users.noreply.github.com>
---
.../Parser/ExpressionParser.cs | 13 +--------
.../Parser/ExpressionPromoter.cs | 21 +-------------
.../Parser/TypeHelper.cs | 28 +++++++++++++++++++
3 files changed, 30 insertions(+), 32 deletions(-)
diff --git a/src/System.Linq.Dynamic.Core/Parser/ExpressionParser.cs b/src/System.Linq.Dynamic.Core/Parser/ExpressionParser.cs
index 0ae3e61d..af013143 100644
--- a/src/System.Linq.Dynamic.Core/Parser/ExpressionParser.cs
+++ b/src/System.Linq.Dynamic.Core/Parser/ExpressionParser.cs
@@ -680,18 +680,7 @@ private Expression ParseComparisonOperator()
private static bool HasImplicitConversion(Type baseType, Type targetType)
{
- var baseTypeHasConversion = baseType.GetMethods(BindingFlags.Public | BindingFlags.Static)
- .Where(mi => mi.Name == "op_Implicit" && mi.ReturnType == targetType)
- .Any(mi => mi.GetParameters().FirstOrDefault()?.ParameterType == baseType);
-
- if (baseTypeHasConversion)
- {
- return true;
- }
-
- return targetType.GetMethods(BindingFlags.Public | BindingFlags.Static)
- .Where(mi => mi.Name == "op_Implicit" && mi.ReturnType == targetType)
- .Any(mi => mi.GetParameters().FirstOrDefault()?.ParameterType == baseType);
+ return TypeHelper.TryFindImplicitConversionOperator(baseType, targetType, out _);
}
private static ConstantExpression ParseEnumToConstantExpression(int pos, Type leftType, ConstantExpression constantExpr)
diff --git a/src/System.Linq.Dynamic.Core/Parser/ExpressionPromoter.cs b/src/System.Linq.Dynamic.Core/Parser/ExpressionPromoter.cs
index b27920b2..6bcc39ce 100644
--- a/src/System.Linq.Dynamic.Core/Parser/ExpressionPromoter.cs
+++ b/src/System.Linq.Dynamic.Core/Parser/ExpressionPromoter.cs
@@ -1,6 +1,5 @@
using System.Linq.Expressions;
using System.Reflection;
-using System.Linq;
namespace System.Linq.Dynamic.Core.Parser;
@@ -137,25 +136,7 @@ public ExpressionPromoter(ParsingConfig config)
}
// Check for implicit conversion operators (op_Implicit) from returnType to type.
- // Look for op_Implicit on the source type or the target type.
- var implicitOperator =
- returnType.GetMethods(BindingFlags.Public | BindingFlags.Static)
- .FirstOrDefault(m =>
- {
- if (m.Name != "op_Implicit" || m.ReturnType != type) return false;
- var parameters = m.GetParameters();
- return parameters.Length == 1 && parameters[0].ParameterType == returnType;
- })
- ??
- type.GetMethods(BindingFlags.Public | BindingFlags.Static)
- .FirstOrDefault(m =>
- {
- if (m.Name != "op_Implicit" || m.ReturnType != type) return false;
- var parameters = m.GetParameters();
- return parameters.Length == 1 && parameters[0].ParameterType == returnType;
- });
-
- if (implicitOperator != null)
+ if (TypeHelper.TryFindImplicitConversionOperator(returnType, type, out _))
{
return Expression.Convert(sourceExpression, type);
}
diff --git a/src/System.Linq.Dynamic.Core/Parser/TypeHelper.cs b/src/System.Linq.Dynamic.Core/Parser/TypeHelper.cs
index f4401b63..8936d5c5 100644
--- a/src/System.Linq.Dynamic.Core/Parser/TypeHelper.cs
+++ b/src/System.Linq.Dynamic.Core/Parser/TypeHelper.cs
@@ -533,4 +533,32 @@ public static bool IsDictionary(Type? type)
TryFindGenericType(typeof(IReadOnlyDictionary<,>), type, out _);
#endif
}
+
+ public static bool TryFindImplicitConversionOperator(Type sourceType, Type targetType, [NotNullWhen(true)] out MethodInfo? implicitOperator)
+ {
+ // Look for op_Implicit on the source type that converts sourceType -> targetType
+ implicitOperator = sourceType.GetMethods(BindingFlags.Public | BindingFlags.Static)
+ .FirstOrDefault(m =>
+ {
+ if (m.Name != "op_Implicit" || m.ReturnType != targetType) return false;
+ var parameters = m.GetParameters();
+ return parameters.Length == 1 && parameters[0].ParameterType == sourceType;
+ });
+
+ if (implicitOperator != null)
+ {
+ return true;
+ }
+
+ // Look for op_Implicit on the target type that converts sourceType -> targetType
+ implicitOperator = targetType.GetMethods(BindingFlags.Public | BindingFlags.Static)
+ .FirstOrDefault(m =>
+ {
+ if (m.Name != "op_Implicit" || m.ReturnType != targetType) return false;
+ var parameters = m.GetParameters();
+ return parameters.Length == 1 && parameters[0].ParameterType == sourceType;
+ });
+
+ return implicitOperator != null;
+ }
}
\ No newline at end of file
From cbe4a9252a29f403a1f446be3c88093f291c8f36 Mon Sep 17 00:00:00 2001
From: Stef Heyenrath
Date: Sun, 29 Mar 2026 08:53:56 +0200
Subject: [PATCH 6/6] refactor code
---
.../Parser/ExpressionParser.cs | 13 +--------
.../Parser/ExpressionPromoter.cs | 22 +--------------
.../Parser/TypeHelper.cs | 27 +++++++++++++++++++
3 files changed, 29 insertions(+), 33 deletions(-)
diff --git a/src/System.Linq.Dynamic.Core/Parser/ExpressionParser.cs b/src/System.Linq.Dynamic.Core/Parser/ExpressionParser.cs
index 0ae3e61d..dcf6a329 100644
--- a/src/System.Linq.Dynamic.Core/Parser/ExpressionParser.cs
+++ b/src/System.Linq.Dynamic.Core/Parser/ExpressionParser.cs
@@ -680,18 +680,7 @@ private Expression ParseComparisonOperator()
private static bool HasImplicitConversion(Type baseType, Type targetType)
{
- var baseTypeHasConversion = baseType.GetMethods(BindingFlags.Public | BindingFlags.Static)
- .Where(mi => mi.Name == "op_Implicit" && mi.ReturnType == targetType)
- .Any(mi => mi.GetParameters().FirstOrDefault()?.ParameterType == baseType);
-
- if (baseTypeHasConversion)
- {
- return true;
- }
-
- return targetType.GetMethods(BindingFlags.Public | BindingFlags.Static)
- .Where(mi => mi.Name == "op_Implicit" && mi.ReturnType == targetType)
- .Any(mi => mi.GetParameters().FirstOrDefault()?.ParameterType == baseType);
+ return TypeHelper.TryGetImplicitConversionOperatorMethod(baseType, targetType, out _);
}
private static ConstantExpression ParseEnumToConstantExpression(int pos, Type leftType, ConstantExpression constantExpr)
diff --git a/src/System.Linq.Dynamic.Core/Parser/ExpressionPromoter.cs b/src/System.Linq.Dynamic.Core/Parser/ExpressionPromoter.cs
index b27920b2..c82c13f9 100644
--- a/src/System.Linq.Dynamic.Core/Parser/ExpressionPromoter.cs
+++ b/src/System.Linq.Dynamic.Core/Parser/ExpressionPromoter.cs
@@ -1,6 +1,5 @@
using System.Linq.Expressions;
using System.Reflection;
-using System.Linq;
namespace System.Linq.Dynamic.Core.Parser;
@@ -136,26 +135,7 @@ public ExpressionPromoter(ParsingConfig config)
return sourceExpression;
}
- // Check for implicit conversion operators (op_Implicit) from returnType to type.
- // Look for op_Implicit on the source type or the target type.
- var implicitOperator =
- returnType.GetMethods(BindingFlags.Public | BindingFlags.Static)
- .FirstOrDefault(m =>
- {
- if (m.Name != "op_Implicit" || m.ReturnType != type) return false;
- var parameters = m.GetParameters();
- return parameters.Length == 1 && parameters[0].ParameterType == returnType;
- })
- ??
- type.GetMethods(BindingFlags.Public | BindingFlags.Static)
- .FirstOrDefault(m =>
- {
- if (m.Name != "op_Implicit" || m.ReturnType != type) return false;
- var parameters = m.GetParameters();
- return parameters.Length == 1 && parameters[0].ParameterType == returnType;
- });
-
- if (implicitOperator != null)
+ if (TypeHelper.TryGetImplicitConversionOperatorMethod(returnType, type, out _))
{
return Expression.Convert(sourceExpression, type);
}
diff --git a/src/System.Linq.Dynamic.Core/Parser/TypeHelper.cs b/src/System.Linq.Dynamic.Core/Parser/TypeHelper.cs
index f4401b63..1cfd533a 100644
--- a/src/System.Linq.Dynamic.Core/Parser/TypeHelper.cs
+++ b/src/System.Linq.Dynamic.Core/Parser/TypeHelper.cs
@@ -533,4 +533,31 @@ public static bool IsDictionary(Type? type)
TryFindGenericType(typeof(IReadOnlyDictionary<,>), type, out _);
#endif
}
+
+ ///
+ /// Check for implicit conversion operators (op_Implicit) from returnType to type.
+ /// Look for op_Implicit on the source type or the target type.
+ ///
+ public static bool TryGetImplicitConversionOperatorMethod(Type returnType, Type type, [NotNullWhen(true)] out MethodBase? implicitOperator)
+ {
+ const string methodName = "op_Implicit";
+
+ implicitOperator = Find(returnType) ?? Find(type);
+ return implicitOperator != null;
+
+ MethodBase? Find(Type searchType)
+ {
+ return searchType.GetMethods(BindingFlags.Public | BindingFlags.Static)
+ .FirstOrDefault(m =>
+ {
+ if (m.Name != methodName || m.ReturnType != type)
+ {
+ return false;
+ }
+
+ var parameters = m.GetParameters();
+ return parameters.Length == 1 && parameters[0].ParameterType == returnType;
+ });
+ }
+ }
}
\ No newline at end of file