ObjectQuery<T>.IEnumerable<T>.GetEnumerator Метод
Определение
Возвращает перечислитель для прохода по результатам запроса.Returns an enumerator that iterates through the results of the query.
virtual System::Collections::Generic::IEnumerator<T> ^ System.Collections.Generic.IEnumerable<T>.GetEnumerator() = System::Collections::Generic::IEnumerable<T>::GetEnumerator;
System.Collections.Generic.IEnumerator<T> IEnumerable<T>.GetEnumerator ();
abstract member System.Collections.Generic.IEnumerable<T>.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<'T>
override this.System.Collections.Generic.IEnumerable<T>.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<'T>
Function GetEnumerator () As IEnumerator(Of T) Implements IEnumerable(Of T).GetEnumerator
Возвращаемое значение
Объект IEnumerator<T> для последовательного просмотра результатов.An IEnumerator<T> object that can be used to iterate through the results.
Реализации
Комментарии
Выполнение запроса проводится с помощью вызова метода IEnumerable<T>.GetEnumerator.Calling IEnumerable<T>.GetEnumerator executes the query.