Skip to content

Commit b94760b

Browse files
committed
rename to AllExpression
1 parent ada6caa commit b94760b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Orm/Xtensive.Orm/Orm/QueryEndpoint.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public bool Equals(QueryEndpoint other) =>
4747

4848
private static class Traits<T>
4949
{
50-
public static readonly MethodCallExpression AllExpression =
50+
public static readonly MethodCallExpression RootCallExpression =
5151
Expression.Call(null, WellKnownMembers.Query.All.MakeGenericMethod(typeof(T)));
5252
}
5353

@@ -64,7 +64,7 @@ private static class Traits<T>
6464
public IQueryable<T> All<T>() where T : class, IEntity =>
6565
Provider.CreateQuery<T>(RootBuilder != null
6666
? RootBuilder.BuildRootExpression(typeof(T))
67-
: Traits<T>.AllExpression);
67+
: Traits<T>.RootCallExpression);
6868

6969
/// <summary>
7070
/// The "starting point" for dynamic LINQ query -

0 commit comments

Comments
 (0)