Results 67 comments of Koen

This is currently already supported for members within the same type, e.g. this is allowed: ```csharp public record Entity { public int Id { get; set; } [Projectable(UseMemberBody = nameof(Computed2))]...

If I understand you correctly, you're asking for a dynamic expression body replacement strategy where the actual expression body of a projectable method can be configured at runtime. I think...

Awesome, Thanks! I'm a bit swamped at the moment but I can take a look at this over the weekend. Seems like a test is failing on mac for different...

Thanks for bringing this up, there are a few simple optimizations that should have a big performance impact, should be a quick win,

This sounds like a source generation issue and/or a runtime resolution issue and should be relatively easy to fix. Happy to take a PR here.

We found a memory leak issue in #168 that may have caused this issue. We should test if this is still an issue after updating to v3.2.2

I have a WIP fix for this issue that I'm still testing out. Meanwhile, a temporary workaround is to register your triggers directly with the service provider. I plan on...

I've been implementing grains with EF backed storage for a while now and my strategy is fundamentally different. Given that a DbContext should be short-lived, I essentially use this pattern:...

We're experiencing this issue as well. It seems to be related to the LRU implementation. The count property managed by the LRU class seems to be leaking. Once the LRU...