You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to request this feature because in our projects we don't want complex type members to be populated. This is the default from the nBuilder github repo from which we are migrating.
For faking entity framework entities, we want to manually construct the navigation properties, which are complex types.
This option would allow to specify if only simple type members should be populated like:
var instance = AutoFaker.Generate<Order>(builder =>
{
builder
.WithOnlySimpleTypes(true);
});
I will create a PR for this.
The text was updated successfully, but these errors were encountered:
I want to request this feature because in our projects we don't want complex type members to be populated. This is the default from the nBuilder github repo from which we are migrating.
For faking entity framework entities, we want to manually construct the navigation properties, which are complex types.
This option would allow to specify if only simple type members should be populated like:
I will create a PR for this.
The text was updated successfully, but these errors were encountered: