Wade Baglin

Results 119 comments of Wade Baglin

Nice find. Seems like a logical bug.

Can you submit a PR? I'd make a `MySqlConnectorDatabaseProvider` that extends `MySqlDatabaseProvider` and overrides the `GetFactory` method. You'd also need to update the `DatabaseProvider` class and add support. Lastly, duplicate...

I’ve added support for this connector. Let me know what you think? https://www.nuget.org/packages/PetaPoco.Compiled/6.0.468-beta

Version 5.1.223 is not a beta. Also make sure you review the linked commit for this issue to understand how it works and how you will need to map your...

@gbmDev can you explain a little more how the cache system would work?

`JOIN images ON images.PropertyId = property.ID` I bet this is causes the extra return rows. Do you have any records where there is more than 1 image per property?

Ah sorry. I missed the group by. 😞 I think I know where it could be going wrong. The query is altered by PP to support paging, with the alternation...

@shaunbowe, the reason for this is history. At the time I implemented the Async methods the `IAsyncEnumerable` method and c# 8 syntax wasn't available based on our support targets. I'll...

The problem with supporting this in v6 is that it targets ``` net40;net45;netstandard2.0 ``` and none of those support `IAsyncEnumerable`