Share via


BoolTypeMapping Constructors

Definition

Overloads

BoolTypeMapping(RelationalTypeMapping+RelationalTypeMappingParameters)

Initializes a new instance of the BoolTypeMapping class.

BoolTypeMapping(String, Nullable<DbType>)

Initializes a new instance of the BoolTypeMapping class.

BoolTypeMapping(RelationalTypeMapping+RelationalTypeMappingParameters)

Initializes a new instance of the BoolTypeMapping class.

protected BoolTypeMapping (Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping.RelationalTypeMappingParameters parameters);
new Microsoft.EntityFrameworkCore.Storage.BoolTypeMapping : Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping.RelationalTypeMappingParameters -> Microsoft.EntityFrameworkCore.Storage.BoolTypeMapping
Protected Sub New (parameters As RelationalTypeMapping.RelationalTypeMappingParameters)

Parameters

Applies to

BoolTypeMapping(String, Nullable<DbType>)

Initializes a new instance of the BoolTypeMapping class.

public BoolTypeMapping (string storeType, System.Data.DbType? dbType = default);
public BoolTypeMapping (string storeType, System.Data.DbType? dbType = 3);
new Microsoft.EntityFrameworkCore.Storage.BoolTypeMapping : string * Nullable<System.Data.DbType> -> Microsoft.EntityFrameworkCore.Storage.BoolTypeMapping
Public Sub New (storeType As String, Optional dbType As Nullable(Of DbType) = Nothing)
Public Sub New (storeType As String, Optional dbType As Nullable(Of DbType) = 3)

Parameters

storeType
String

The name of the database type.

dbType
Nullable<DbType>

The DbType to be used.

Applies to