private async Task Foo(Bar bar)
{
Console.WriteLine("Inside Foo before insert");
_collection.Insert(session, bar);
Console.Writeline("Inside Foo after Insert");
}
this method is executed by several threads concurrently and i get to see the first log but not the one after Insert and Execution stops.
Same works if i try synchrounously.