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
// configure the constructor// the target constructor must have two paramtersbuilder.Constructor().WithParameters(2);// the target constructor must have a single parameter of type stringbuilder.Constructor().WithParameters(typeof(string));// configure the target constructor parameters with the source propertiesbuilder.Constructor().Parameters(x =>x.Name, x =>x.Age);// configure the inner properties of a source property to be mapped to the constructorbuilder.Map(x =>x.SomeProp).ToConstructor();// orbuilder.Constructor().MapInnerProperties(x =>x.SomeProp);// configure a source property to be mapped to a parameter of the target constructorbuilder.Map(x =>x.Name).ToConstructor().ToParameter();// orbuilder.Constructor().Map(x =>x.Name);
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Samples:
The text was updated successfully, but these errors were encountered: