Skip to content

Commit 4945a6a

Browse files
committed
Remove ? because of C# overload resolution problems
1 parent 5cffd66 commit 4945a6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Signum.Engine/DynamicQuery/DynamicQueryFluentInclude.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static FluentInclude<T> WithExpressionFrom<T, F>(this FluentInclude<T> fi
4444
/// <summary>
4545
/// Uses typeof(T) NiceName as niceName
4646
/// </summary>
47-
public static FluentInclude<T> WithExpressionFrom<T, F>(this FluentInclude<T> fi, Expression<Func<F, T?>> lambdaToMethodOrProperty)
47+
public static FluentInclude<T> WithExpressionFrom<T, F>(this FluentInclude<T> fi, Expression<Func<F, T>> lambdaToMethodOrProperty)
4848
where T : Entity
4949
{
5050
QueryLogic.Expressions.Register(lambdaToMethodOrProperty, () => typeof(T).NiceName());

0 commit comments

Comments
 (0)