CosmosDbFunctionsExtensions.CoalesceUndefined<T> Method

Definition

Coalesces a Cosmos undefined value via the ?? operator.

C#
public static T CoalesceUndefined<T> (this Microsoft.EntityFrameworkCore.DbFunctions _, T expression1, T expression2);

Type Parameters

T

Parameters

_
DbFunctions

The DbFunctions instance.

expression1
T

The expression to coalesce. This expression will be returned unless it is undefined, in which case expression2 will be returned.

expression2
T

The expression to be returned if expression1 is undefined.

Returns

T

Remarks

See Database functions, and Accessing Cosmos with EF Core for more information and examples.

Applies to

Product Versions
Entity Framework Core 9.0