IPrincipalKeyValueFactory<TKey>.FindNullPropertyInKeyValues 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.
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
Entity Framework