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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework