Aaron Sherber

Results 34 issues of Aaron Sherber

I don't know whether this is possible, but I would love to be able to create a keyboard shortcut for "Add tab to new group". Other tab group management would...

When I call `PocoData.ForType(type, mapper)` for the first time, the resulting `PocoData` object is stored in the cache keyed only by the type. This means that if I later call...

bug

PetaPoco in general works just fine with non-public classes, but I have discovered that multi-poco queries do not. I don't know much about IL generation, but I'm pretty sure it...

v7

12 comment

Even though v6 hasn't been out for all that long, I think there are enough breaking changes that have been discussed (#478, #500 for example) and side conversations about code...

discussion
breaking change

```csharp public class Foo { public int ID { get; set; } public DateTime DOB { get; set; } public int Month => DOB.Month; } using (var db = new...

discussion
enhancement

There appear to be some public methods and properties of `Database` which are missing from `IDatabase` (and from any of the other interfaces which `IDatabase` implements). I wasn't sure if...

enhancement
breaking change

I see that there's a wiki page with information about integration tests for this library. @pleb Can you add some information about how to set up our machines to run...

question

I posted this on the LinqPad forum as well, because I'm not sure if it's a limitation of LinqPad or an issue with this driver. When I make a connection...

enhancement

I came across this while working on #90 . Both `GetDiff()` and `GetPatch()` take an `options` parameter which is an `object`. Looking at the API [here](https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Busername%7D/%7Brepo_slug%7D/diff/%7Bspec%7D) and [here](https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Busername%7D/%7Brepo_slug%7D/patch/%7Bspec%7D) I think...

I'm working on #13. In `ModuleWeaver.AfterWeaving()`, I see: ```csharp fixedFileInfo.ProductVersion = assemblyVersion; ``` but then: ```csharp stringTable.Values["ProductVersion"] = assemblyInfoVersion; ``` Is it intentional that these two are set to different...

bug