DtoInfo.CreateNew method (1 of 6)

Calls CreateNew with the specified property values.

public static object CreateNew(this IDtoInfo info, 
    params (IDtoProperty Property, object? Value)[] propertyValues)

See Also


DtoInfo.CreateNew method (2 of 6)

Calls CreateNew with the specified property values.

public static object CreateNew(this IDtoInfo info, 
    params (string PropertyName, object? Value)[] propertyValues)

See Also


DtoInfo.CreateNew method (3 of 6)

Calls CreateNew with the specified property values.

public static object CreateNew(this IDtoInfo info, 
    IEnumerable<(string PropertyName, object? Value)> propertyValues)

See Also


DtoInfo.CreateNew<T> method (4 of 6)

Calls CreateNew with the specified property values.

public static T CreateNew<T>(this DtoInfo<T> info, 
    params (IDtoProperty<T> Property, object? Value)[] propertyValues)

See Also


DtoInfo.CreateNew<T> method (5 of 6)

Calls CreateNew with the specified property values.

public static T CreateNew<T>(this DtoInfo<T> info, 
    params (string PropertyName, object? Value)[] propertyValues)

See Also


DtoInfo.CreateNew<T> method (6 of 6)

Calls CreateNew with the specified property values.

public static T CreateNew<T>(this DtoInfo<T> info, 
    IEnumerable<(string PropertyName, object? Value)> propertyValues)

See Also