Aaron Sherber
Aaron Sherber
`IDbDataParameter` implements `IDataParameter`, so it includes all of those properties -- and it's used elsewhere in the code as a discriminator. I think I may not have been clear about...
Okay -- I agree that it's useful, and if you want to work on a PR I think that would be great. Don't forget to take into account more scenarios...
I think very little attention has been paid to the SQL builder over the years; as the original docs stated, the functionality has always been [really basic](https://github.com/CollaboratingPlatypus/PetaPoco/wiki/Old-Documentation#:~:text=version%20and%20it%27s-,really%20basic,-.). For the kind...
FWIW, PetaPoco.SqlKata lets SqlKata work just like PetaPoco in terms of auto-generating selects from the corresponding poco classes. ```c# [Table("MyTable")] class MyClass { public int ID { get; set; }...
@roggmaeh Can you please open a pull request so we can review and comment?
Please see my comments in the [PR](https://github.com/CollaboratingPlatypus/PetaPoco/pull/630#pullrequestreview-840961143). I'm not sure that this work is needed.
I'm not sure whether this will fix the hard-to-reproduce reported issue, but #655 (borrowing from @jpshannon) achieves the goal of replacing the Dictionary/ReaderWriterLockSlim in the Cache class.
Thanks for the detailed info, but I'm currently not able to reproduce this with PetaPoco. Here's the LinqPad code I'm using: ```csharp void Main() { var connString = "..."; using...
@BobT2022 I guess I'm wondering if you have correctly diagnosed the issue. Your previous comment implied that the problem was Sql Server returning an int type of null. But as...
See #421.