M31.FluentAPI icon indicating copy to clipboard operation
M31.FluentAPI copied to clipboard

Generate fluent builders for your C# classes with ease.

Results 9 M31.FluentAPI issues
Sort by recently updated
recently updated
newest added

I see some great use cases for the library in unit testing, to create some fake objects and convert them into my models. It would be nice if steps were...

enhancement

I currently have a use case where I created an abstract builder which receives a bunch of type parameters and the idea is that it would be possible to inherit...

What about generating additional extension methods for optional properties which can be populated in any order after fluent builder was fully executed? Example: ```csharp [FluentApi] public class Student { [FluentMember(0)]...

theory crafting

Would it be possible to generate private method accessors using [UnsafeAccessorAttribute](https://learn.microsoft.com/en-us/dotnet/api/system.runtime.compilerservices.unsafeaccessorattribute?view=net-8.0) when targetting at least dotnet8? That would make it safe to use with NativeAOT and Trimming, as the accessed...

enhancement

Hello, Just a thought that in classes with long chains where you want to slot a new call in the middle, perhaps it could be possible to link by the...

theory crafting

Hello, I haven't seen a mention of this in the docs. I'm working with fluent interfaces that call an API, so the last method call in a chain will fire...

enhancement

The generated classes and interfaces do not have the documentation of the specified `FluentMember`s and `FluentMethod`s, would it be possible to copy that into the generated code, such that is...

enhancement
theory crafting

### Actual behavior: When using `FluentCollection` you can use one of three methods `withItems`, `withItem` and `withZeroItems`. #### Details Once you use one of them you're redirected to the next...

bug
theory crafting

Hi, Recently when consuming the package on a particular class of my code base I noticed an issue where properties named similarly to language keywords results in errors on generated...

bug