Exemplo n.º 1
0
 /// <summary>
 ///     Returns an <see cref="IDbAsyncEnumerator" /> which when enumerated will execute the given SQL query against the
 ///     database backing this context. The results are not materialized as entities or tracked.
 /// </summary>
 /// <returns> The query results. </returns>
 public override IDbAsyncEnumerator GetAsyncEnumerator()
 {
     return(_internalContext.ExecuteSqlQueryAsync(_elementType, Sql, Parameters));
 }