DbContextConfiguration.UseDatabaseNullSemantics (Propiedad)
[Esta página es específica de la versión 6 de Entity Framework. La versión más reciente está disponible como el paquete NuGet de Entity Framework. Para más información sobre Entity Framework, consulte msdn.com/es-ES/data/ef].
Obtiene o define un valor que indica su se exhibirá o no la semántica NULL de la base de datos al comparar dos operandos que potencialmente admitan valores NULL. El valor predeterminado es false. Por ejemplo, (operand1 == operand2) se traducirá como: (operand1 = operand2) si UseDatabaseNullSemantics es true, respectivamente (((operand1 = operand2) AND (NOT (operand1 IS NULL OR operand2 IS NULL))) OR ((operand1 IS NULL) AND (operand2 IS NULL))) si UseDatabaseNullSemantics es false.
Espacio de nombres: System.Data.Entity.Infrastructure
Ensamblado: EntityFramework (en EntityFramework.dll)
Sintaxis
'Declaración
Public Property UseDatabaseNullSemantics As Boolean
Get
Set
'Uso
Dim instance As DbContextConfiguration
Dim value As Boolean
value = instance.UseDatabaseNullSemantics
instance.UseDatabaseNullSemantics = value
public bool UseDatabaseNullSemantics { get; set; }
public:
property bool UseDatabaseNullSemantics {
bool get ();
void set (bool value);
}
member UseDatabaseNullSemantics : bool with get, set
function get UseDatabaseNullSemantics () : boolean
function set UseDatabaseNullSemantics (value : boolean)
Valor de propiedad
Tipo: System.Boolean
Es true si se activa el comportamiento de comparación de valores NULL de la base de datos; de lo contrario, es false .