SelectExpression.Clone 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
Clone(String, ExpressionVisitor) |
Creates a new object that is a copy of the current instance. |
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. |
Clone(String, ExpressionVisitor)
- Source:
- SelectExpression.cs
Creates a new object that is a copy of the current instance.
public override Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase Clone (string? alias, System.Linq.Expressions.ExpressionVisitor cloningExpressionVisitor);
override this.Clone : string * System.Linq.Expressions.ExpressionVisitor -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase
Public Overrides Function Clone (alias As String, cloningExpressionVisitor As ExpressionVisitor) As TableExpressionBase
Parameters
- alias
- String
The alias to be used by the cloned table.
- cloningExpressionVisitor
- ExpressionVisitor
The cloning expression for further visitation of nested nodes.
Returns
A new object that is a copy of this instance.
Applies to
Clone()
- Source:
- SelectExpression.cs
- Source:
- SelectExpression.cs
- Source:
- SelectExpression.cs
- Source:
- SelectExpression.cs
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.
[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
public Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression Clone ();
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
member this.Clone : unit -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
override this.Clone : unit -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression
Public Function Clone () As SelectExpression
Returns
- Attributes
Applies to
Entity Framework