Skip to content

Commit 9d947f3

Browse files
committed
Moves DelayedQuery{T} form Internals
DelayedScalarQuery{T} is in Xtensive.Orm but DelayedQuery{T} is in Xtensive.Orm.Internals. Both types are directly accesible.
1 parent f1eb0ac commit 9d947f3

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Orm/Xtensive.Orm/Core/Extensions/EnumerableExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2008-2020 Xtensive LLC.
1+
// Copyright (C) 2008-2021 Xtensive LLC.
22
// This code is distributed under MIT license terms.
33
// See the License.txt file in the project root for more information.
44
// Created by: Alex Yakunin
@@ -14,7 +14,7 @@
1414
using System.Threading.Tasks;
1515
using Xtensive.Collections;
1616
using Xtensive.Collections.Graphs;
17-
using Xtensive.Orm.Internals;
17+
using Xtensive.Orm;
1818

1919

2020
namespace Xtensive.Core

Orm/Xtensive.Orm/Orm/DelayedQuery{T}.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2009-2020 Xtensive LLC.
1+
// Copyright (C) 2009-2021 Xtensive LLC.
22
// This code is distributed under MIT license terms.
33
// See the License.txt file in the project root for more information.
44
// Created by: Alexander Nikolaev
@@ -10,9 +10,10 @@
1010
using System.Threading;
1111
using System.Threading.Tasks;
1212
using Xtensive.Core;
13+
using Xtensive.Orm.Internals;
1314
using Xtensive.Orm.Linq;
1415

15-
namespace Xtensive.Orm.Internals
16+
namespace Xtensive.Orm
1617
{
1718
/// <summary>
1819
/// Represents a delayed sequence query (query where result can be enumerated after an execution).

0 commit comments

Comments
 (0)