BuilderGenerator icon indicating copy to clipboard operation
BuilderGenerator copied to clipboard

Add "With" methods that take other builders.

Open MelGrubb opened this issue 1 year ago • 0 comments

This is a convenience shortcut to turn

WithFoo(() => fooBuilder.Build())

into

WithFoo(fooBuilder)

The builder would have to do some reflection to see whether there even IS a builder for Foo first, though.

MelGrubb avatar Jan 23 '24 15:01 MelGrubb