uno.extensions
uno.extensions copied to clipboard
BindableGenerator generated code stackoverflows when model is recursive
public partial record MyClass
{
public MyClass Child { get; init; }
}
The generated code builds correctly, but I get a stackoverflow when the code uses the model.
@fperreaultnv is the instance of MyClass being created by DI? This will cause an overflow as part of resolving the instance I think, unrelated to mvux (ie BindableGenerator)