Skip to content

Commit

Permalink
Remove ? because of C# overload resolution problems
Browse files Browse the repository at this point in the history
  • Loading branch information
olmobrutall committed Jul 4, 2019
1 parent 5cffd66 commit 4945a6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Signum.Engine/DynamicQuery/DynamicQueryFluentInclude.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static FluentInclude<T> WithExpressionFrom<T, F>(this FluentInclude<T> fi
/// <summary>
/// Uses typeof(T) NiceName as niceName
/// </summary>
public static FluentInclude<T> WithExpressionFrom<T, F>(this FluentInclude<T> fi, Expression<Func<F, T?>> lambdaToMethodOrProperty)
public static FluentInclude<T> WithExpressionFrom<T, F>(this FluentInclude<T> fi, Expression<Func<F, T>> lambdaToMethodOrProperty)
where T : Entity
{
QueryLogic.Expressions.Register(lambdaToMethodOrProperty, () => typeof(T).NiceName());
Expand Down

0 comments on commit 4945a6a

Please sign in to comment.