EF.Functions Property

Definition

Provides CLR methods that get translated to database functions when used in LINQ to Entities queries. Calling these methods in other contexts (e.g. LINQ to Objects) will throw a NotSupportedException.

public static Microsoft.EntityFrameworkCore.DbFunctions Functions { get; }
static member Functions : Microsoft.EntityFrameworkCore.DbFunctions
Public Shared ReadOnly Property Functions As DbFunctions

Property Value

Remarks

Note that this is a static property accessed through the top-level EF static type.

See Database functions for more information and examples.

Applies to