ValueConverter.ComposeWith(ValueConverter) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework