Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Not A Bug
-
3.5.0
-
None
-
None
Description
After upgrading to 3.5.0 of .NET Core driver, I'm trying to get my call to SubmitAsync working.
This seems to be the only generic type that works w/o a cast error.
await client.SubmitAsync<Dictionary<string, object>>(query)
I'd thought I could use
await client.SubmitAsync<JsonElement>(query)
But I get a cast error from the dictionary to anything else I try.
Any idea what I may be doing wrong?