File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Orm/Xtensive.Orm/Orm/Linq/Materialization Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1- // Copyright (C) 2020 Xtensive LLC.
1+ // Copyright (C) 2020-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
1111
1212namespace Xtensive . Orm . Linq . Materialization
1313{
14- public interface IMaterializingReader < out TItem >
14+ internal interface IMaterializingReader < out TItem >
1515 {
1616 IEnumerator < TItem > AsEnumerator ( ) ;
1717 IAsyncEnumerator < TItem > AsAsyncEnumerator ( ) ;
1818 }
1919
20- public class MaterializingReader < TItem > : IMaterializingReader < TItem > , IEnumerator < TItem > , IAsyncEnumerator < TItem >
20+ internal class MaterializingReader < TItem > : IMaterializingReader < TItem > , IEnumerator < TItem > , IAsyncEnumerator < TItem >
2121 {
2222 private readonly RecordSetReader recordSetReader ;
2323 private readonly MaterializationContext context ;
You can’t perform that action at this time.
0 commit comments