Пример #1
0
 /// <summary>
 /// Returns an enumerator that iterates through a collection.
 /// </summary>
 /// <returns>
 /// An <see cref="IEnumerator" /> object that can be used to iterate through the collection.
 /// </returns>
 /// <filterpriority>2</filterpriority>
 IEnumerator IEnumerable.GetEnumerator()
 {
     return(RepositoryQuery.GetEnumerator());
 }
Пример #2
0
 /// <summary>
 /// Returns an enumerator that iterates through the collection.
 /// </summary>
 /// <returns>
 /// A <see cref="IEnumerator{TEntity}" /> that can be used to iterate through the collection.
 /// </returns>
 /// <filterpriority>1</filterpriority>
 public IEnumerator <TEntity> GetEnumerator()
 {
     return(RepositoryQuery.GetEnumerator());
 }