MongoAsyncEnumerableAdapter icon indicating copy to clipboard operation
MongoAsyncEnumerableAdapter copied to clipboard

Provides an adapter from MongoDB's IAsyncCursor & IAsyncCursorSource to IAsyncEnumerable

Results 3 MongoAsyncEnumerableAdapter issues
Sort by recently updated
recently updated
newest added

In `ToAsyncEnumerable` you've checked for null in: https://github.com/i3arnon/MongoAsyncEnumerableAdapter/blob/8539306221b4cfba0d77ba6589693a32d71a992e/src/MongoAsyncEnumerableAdapter/AsyncCursorExtensions.cs#L34 but that check won't get executed in Release builds. Which means in production you'll get a `NullReferenceException` from the `!` in this...

https://www.mongodb.com/community/forums/t/net-c-driver-strong-naming/291649 With "MongoDB.Driver" Version="2.28.0" and the example code below compiling yields error message Error CS0012 : The type 'IMongoQueryable' is defined in an assembly that is not referenced. You must...