IPrincipalKeyValueFactory<TKey>.FindNullPropertyInKeyValues Method

Definition

Overloads

FindNullPropertyInKeyValues(IReadOnlyList<Object>)

Finds the first null in the given in-order array of key values and returns the associated IProperty.

FindNullPropertyInKeyValues(Object[])

Finds the first null in the given in-order array of key values and returns the associated IProperty.

FindNullPropertyInKeyValues(IReadOnlyList<Object>)

Finds the first null in the given in-order array of key values and returns the associated IProperty.

public Microsoft.EntityFrameworkCore.Metadata.IProperty? FindNullPropertyInKeyValues (System.Collections.Generic.IReadOnlyList<object?> keyValues);
abstract member FindNullPropertyInKeyValues : System.Collections.Generic.IReadOnlyList<obj> -> Microsoft.EntityFrameworkCore.Metadata.IProperty
Public Function FindNullPropertyInKeyValues (keyValues As IReadOnlyList(Of Object)) As IProperty

Parameters

keyValues
IReadOnlyList<Object>

The key values.

Returns

The associated property.

Applies to

FindNullPropertyInKeyValues(Object[])

Finds the first null in the given in-order array of key values and returns the associated IProperty.

public Microsoft.EntityFrameworkCore.Metadata.IProperty FindNullPropertyInKeyValues (object[] keyValues);
public Microsoft.EntityFrameworkCore.Metadata.IProperty? FindNullPropertyInKeyValues (object?[] keyValues);
abstract member FindNullPropertyInKeyValues : obj[] -> Microsoft.EntityFrameworkCore.Metadata.IProperty
Public Function FindNullPropertyInKeyValues (keyValues As Object()) As IProperty

Parameters

keyValues
Object[]

The key values.

Returns

The associated property.

Applies to