For example: ```csharp IAsyncEnumerable<T> xxxx; var result = await xxxx.Where(i=> .....).OrderBy(i=> ...).AsAsync(); var result = await from async c in xxxx where .... order by ..... asc; ```