ObjectQuery<T>.IEnumerable<T>.GetEnumerator メソッド
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
列挙されたときにデータベースに対して指定された SQL クエリを実行する IEnumerator<T> を返します。
名前空間: System.Data.Entity.Core.Objects
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")> _
Private Function GetEnumerator As IEnumerator(Of T)
Implements IEnumerable(Of T).GetEnumerator
'使用
Dim instance As ObjectQuery
Dim returnValue As IEnumerator(Of T)
returnValue = CType(instance, IEnumerable(Of T)).GetEnumerator()
[SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
IEnumerator<T> IEnumerable<T>.GetEnumerator()
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
private:
virtual IEnumerator<T>^ GetEnumerator() sealed = IEnumerable<T>::GetEnumerator
[<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")>]
private abstract GetEnumerator : unit -> IEnumerator<'T>
[<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")>]
private override GetEnumerator : unit -> IEnumerator<'T>
JScript supports the use of explicit interface implementations, but not the declarations of new ones.
戻り値
型 : System.Collections.Generic.IEnumerator<T>
クエリ結果。
Implements
IEnumerable<T>.GetEnumerator()