LikeExpression Constructors
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
LikeExpression(Expression, Expression) |
Creates a new instance of LikeExpression. |
LikeExpression(Expression, Expression, Expression) |
Creates a new instance of LikeExpression. |
LikeExpression(Expression, Expression)
- Source:
- LikeExpression.cs
- Source:
- LikeExpression.cs
Creates a new instance of LikeExpression.
public LikeExpression (System.Linq.Expressions.Expression match, System.Linq.Expressions.Expression pattern);
new Microsoft.EntityFrameworkCore.Query.Expressions.LikeExpression : System.Linq.Expressions.Expression * System.Linq.Expressions.Expression -> Microsoft.EntityFrameworkCore.Query.Expressions.LikeExpression
Public Sub New (match As Expression, pattern As Expression)
Parameters
- match
- Expression
The expression to match.
- pattern
- Expression
The pattern to match.
Applies to
LikeExpression(Expression, Expression, Expression)
- Source:
- LikeExpression.cs
- Source:
- LikeExpression.cs
Creates a new instance of LikeExpression.
public LikeExpression (System.Linq.Expressions.Expression match, System.Linq.Expressions.Expression pattern, System.Linq.Expressions.Expression escapeChar);
new Microsoft.EntityFrameworkCore.Query.Expressions.LikeExpression : System.Linq.Expressions.Expression * System.Linq.Expressions.Expression * System.Linq.Expressions.Expression -> Microsoft.EntityFrameworkCore.Query.Expressions.LikeExpression
Public Sub New (match As Expression, pattern As Expression, escapeChar As Expression)
Parameters
- match
- Expression
The expression to match.
- pattern
- Expression
The pattern to match.
- escapeChar
- Expression
The escape character to use in pattern
.
Applies to
Met ons samenwerken op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en controleren. Bekijk onze gids voor inzenders voor meer informatie.
Entity Framework