Jason Rowe

Results 7 comments of Jason Rowe

@GREsau - Technically this is a MySql optimizer bug, but I agree - if Dapper could generate something more reasonable it could make the troubles go away. I'd venture a...

I'm seeing the same thing. Nothing database-related changed other than updating the versions of MySqlConnector and Dapper earlier this week. I looked for threading issues. The places where database connections...

@bgrainger I agree, but if you look at that stack trace, you can see that it's in Dapper. Dapper is opening and closing the connections and disposing the reader for...

I tried inducing the failure before I rolled back but was unable to do it on demand. It's pretty bog standard. Things are abstracted for instrumentation purposes so the failing...

It just creates the connection and returns it; it does not open it. With very few exceptions I let Dapper open and close the connection. I'm swamped right now but...

I would expect it to be rare; the case would be a cancelled http request in a user-facing path. Most of our content is served up from OpenSearch, not from...

This breaks pretty reliably against a local MySql instance on my machine: ``` using MySqlConnector; using System.Data; var connectionString = Environment.GetEnvironmentVariable("CONNECTION_STRING"); async Task RunOnce(int instance) { for (var index =...