FluentBuilder icon indicating copy to clipboard operation
FluentBuilder copied to clipboard

A project which uses Source Generation to create a FluentBuilder for a specified model or DTO

Results 5 FluentBuilder issues
Sort by recently updated
recently updated
newest added

If more than 1 `AutoGenerateBuilder` class is defined, no classes are generated ````c# [AutoGenerateBuilder(typeof(A))] public partial class ABuilder { } [AutoGenerateBuilder(typeof(B))] public partial class BBuilder { } ```` `A` and...

``` c# public class MyEntity : ITableEntity { #region ITableEntity properties public string PartitionKey { get; set; } = null!; public string RowKey { get; set; } = null!; public...

bug

C# 12 has primary constructors in classes, but they don't generate properties automatically (it's a really bad design choice, but it's the chosen one). It'd be interesting to generate properties...

For protobuf `RepeatedField` collections (which are read-only and implements `ICollection` and `IList` among others) there are no `With*` methods generated.