We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ada6caa commit b94760bCopy full SHA for b94760b
Orm/Xtensive.Orm/Orm/QueryEndpoint.cs
@@ -47,7 +47,7 @@ public bool Equals(QueryEndpoint other) =>
47
48
private static class Traits<T>
49
{
50
- public static readonly MethodCallExpression AllExpression =
+ public static readonly MethodCallExpression RootCallExpression =
51
Expression.Call(null, WellKnownMembers.Query.All.MakeGenericMethod(typeof(T)));
52
}
53
@@ -64,7 +64,7 @@ private static class Traits<T>
64
public IQueryable<T> All<T>() where T : class, IEntity =>
65
Provider.CreateQuery<T>(RootBuilder != null
66
? RootBuilder.BuildRootExpression(typeof(T))
67
- : Traits<T>.AllExpression);
+ : Traits<T>.RootCallExpression);
68
69
/// <summary>
70
/// The "starting point" for dynamic LINQ query -
0 commit comments