Skip to content

Commit 9664c6a

Browse files
authoredMar 10, 2025
Merge pull request #61 from magiccodingman/magiccodingman-patch-9
Update README.md
2 parents 3da5a7f + 8f64f25 commit 9664c6a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,10 @@ This documentation explains the various query capabilities available in the `Whe
133133
| `OrderByDescending(Expression<Func<T, object>> predicate)` | Orders the query result by the specified predicate in descending order. |
134134
| `Count()` | Get the number of items in the collection. |
135135
| `ToListAsync()` | Executes the MagicQuery and returns the results as `List<T>`. |
136+
| `AsAsyncEnumerable()` | Executes the `MagicQuery` and returns results as `IAsyncEnumerable<T>`. |
136137
| `{NOT YET SUPPORTED} AsEnumerable()` | (**FUTURE FEATURE**) Executes the MagicQuery and returns the results as `IEnumerable<T>`. |
137138
| `{NOT YET SUPPORTED} ToList()` | (**FUTURE FEATURE**) Executes the MagicQuery and returns the results as `List<T>`. |
138-
| `AsEnumerableAsync()` | Executes the MagicQuery and returns the results as `IEnumerable<T>`. |
139+
139140

140141

141142
These MagicQuery methods allow you to build complex queries similar to standard LINQ in C#. Remember to call the `ToListAsync` or the `AsEnumerableAsync` method at the end of your MagicQuery to execute the query and retrieve the full results.

0 commit comments

Comments
 (0)
Please sign in to comment.