ValueConverter.ComposeWith(ValueConverter) Method

Definition

Composes another ValueConverter instance with this one such that the result of the first conversion is used as the input to the second conversion.

public virtual Microsoft.EntityFrameworkCore.Storage.ValueConversion.ValueConverter ComposeWith (Microsoft.EntityFrameworkCore.Storage.ValueConversion.ValueConverter secondConverter);
public virtual Microsoft.EntityFrameworkCore.Storage.ValueConversion.ValueConverter ComposeWith (Microsoft.EntityFrameworkCore.Storage.ValueConversion.ValueConverter? secondConverter);
abstract member ComposeWith : Microsoft.EntityFrameworkCore.Storage.ValueConversion.ValueConverter -> Microsoft.EntityFrameworkCore.Storage.ValueConversion.ValueConverter
override this.ComposeWith : Microsoft.EntityFrameworkCore.Storage.ValueConversion.ValueConverter -> Microsoft.EntityFrameworkCore.Storage.ValueConversion.ValueConverter
Public Overridable Function ComposeWith (secondConverter As ValueConverter) As ValueConverter

Parameters

secondConverter
ValueConverter

The second converter.

Returns

The composed converter.

Remarks

See EF Core value converters for more information and examples.

Applies to