You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Parses an expression into a LambdaExpression. (Also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.)
27
29
/// </summary>
28
-
/// <param name="createParameterCtor">if set to <c>true</c> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</param>
29
30
/// <param name="resultType">Type of the result. If not specified, it will be generated dynamically.</param>
/// <param name="parsingConfig">The Configuration for the parsing.</param>
46
46
/// <param name="createParameterCtor">if set to <c>true</c> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</param>
47
47
/// <param name="resultType">Type of the result. If not specified, it will be generated dynamically.</param>
@@ -109,20 +108,20 @@ public static LambdaExpression ParseLambda(bool createParameterCtor, [NotNull] T
109
108
/// <summary>
110
109
/// Parses an expression into a LambdaExpression.
111
110
/// </summary>
111
+
/// <param name="parsingConfig">The Configuration for the parsing.</param>
112
112
/// <param name="createParameterCtor">if set to <c>true</c> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</param>
113
113
/// <param name="itType">The main type from the dynamic class expression.</param>
114
114
/// <param name="resultType">Type of the result. If not specified, it will be generated dynamically.</param>
/// Parses an expression into a LambdaExpression. (Also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.)
143
+
/// </summary>
144
+
/// <param name="parsingConfig">The Configuration for the parsing.</param>
145
+
/// <param name="parameters">A array from ParameterExpressions.</param>
146
+
/// <param name="resultType">Type of the result. If not specified, it will be generated dynamically.</param>
/// <param name="parsingConfig">The Configuration for the parsing.</param>
166
175
/// <param name="createParameterCtor">if set to <c>true</c> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</param>
167
176
/// <param name="parameters">A array from ParameterExpressions.</param>
168
177
/// <param name="resultType">Type of the result. If not specified, it will be generated dynamically.</param>
0 commit comments