Wade Baglin

Results 116 comments of Wade Baglin

Oh, I didn't realise @asherber added support for netstandard 2.1... well this changes my view ;)

I would be interested in helping with the integration testing. Here's what I've set up for PetaPoco. Thoughts? Docker for (MySQL, Postgres) - https://github.com/CollaboratingPlatypus/PetaPoco/tree/development/PetaPoco.Tests.Docker Initial integration testing for all PP...

@SimonHurrNZ I would have thought you'd need to pass a generic argument to `db.Fetch(proc);`? I suspect the Generic argument is being kept the same for each outcome of the stored...

@SimonHurrNZ I suspect the dynamic types are wrongly being treated as equal based on the number of properties they contain. Seems to be how .Net works. We would have to...

> I think the issue is [here](https://github.com/CollaboratingPlatypus/PetaPoco/blob/ece14f470987631302a345c7b4a01514fa543c64/PetaPoco/Core/PocoData.cs#L117). When we create and cache a factory method for turning the `IDataReader` into a poco, it's keyed by the SQL statement and the...

I agree that using the `;` isn't foolproof. I did steal it from [here](https://github.com/CollaboratingPlatypus/PetaPoco/blob/1817f1f70bed769472ccd8a1c9bf25505513177a/PetaPoco/Utilities/AutoSelectHelper.cs#L16) though 👀 Also agree that if there isn't a concrete way of supporting stored procs with...

@SimonHurrNZ Sorry. I didn't see your comment before replying. It seems we have come to the same conclusion

@SimonHurrNZ, maybe a better workaround, though a bit hacky, might be: ``` c# for (int i = 1; i < 5; i++) { var proc = Sql.Builder.Append($";EXEC GetData @@selector =...

Another way to tackle this and make the support more formal would be to expose a noCacheQueryHint prop on the DB Provider and check in the SQL string. ``` c#...

Personally, I don't have a problem with it. A fair few of the contributions are from people promoting their work. So I figure, sure, the awesome list is part promotion....