JsonEachExpression Class
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.
An expression that represents a SQLite json_each function call in a SQL tree.
public class JsonEachExpression : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression, Microsoft.EntityFrameworkCore.Query.SqlExpressions.IClonableTableExpressionBase
type JsonEachExpression = class
inherit TableValuedFunctionExpression
interface IClonableTableExpressionBase
Public Class JsonEachExpression
Inherits TableValuedFunctionExpression
Implements IClonableTableExpressionBase
- Inheritance
- Implements
Remarks
See json_each for more information and examples.
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
Constructors
JsonEachExpression(String, SqlExpression, IReadOnlyList<PathSegment>) |
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release. |
Properties
Alias |
The alias assigned to this table source. (Inherited from TableValuedFunctionExpression) |
Arguments |
The list of arguments of this function. (Inherited from TableValuedFunctionExpression) |
IsBuiltIn |
Gets the value indicating whether the function is built-in. (Inherited from TableValuedFunctionExpression) |
JsonExpression |
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release. |
Name |
The name of the function. (Inherited from TableValuedFunctionExpression) |
NodeType | (Inherited from TableExpressionBase) |
Path |
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release. |
Schema |
The schema of the function. (Inherited from TableValuedFunctionExpression) |
StoreFunction |
The store function. (Inherited from TableValuedFunctionExpression) |
Type | (Inherited from TableExpressionBase) |
Methods
AddAnnotation(String, Object) |
Adds an annotation to this object. Throws if an annotation with the specified name already exists. (Inherited from TableExpressionBase) |
Clone() |
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release. |
CreateWithAnnotations(IEnumerable<IAnnotation>) |
Creates an object like this with specified annotations. (Inherited from TableValuedFunctionExpression) |
Equals(Object) | System.Linq.Expressions.Expression.Equals(System.Object) |
FindAnnotation(String) |
Gets the annotation with the given name, returning |
GetAnnotations() |
Gets all annotations on the current object. (Inherited from TableExpressionBase) |
GetHashCode() | System.Linq.Expressions.Expression.GetHashCode |
Print(ExpressionPrinter) |
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release. |
PrintAnnotations(ExpressionPrinter) |
Creates a printable string representation of annotations associated with the given expression using ExpressionPrinter. (Inherited from TableExpressionBase) |
Update(IReadOnlyList<SqlExpression>) |
Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression. (Inherited from TableValuedFunctionExpression) |
Update(SqlExpression, IReadOnlyList<PathSegment>) |
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release. |
VisitChildren(ExpressionVisitor) |
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release. |
Explicit Interface Implementations
IPrintableExpression.Print(ExpressionPrinter) |
Creates a printable string representation of the given expression using ExpressionPrinter. (Inherited from TableExpressionBase) |
ITableBasedExpression.Table |
The ITableBase associated with given table source, if any. (Inherited from TableValuedFunctionExpression) |
Extension Methods
UnwrapJoin(TableExpressionBase) |
If the given |
Applies to
Entity Framework