ExceptExpression(String, SelectExpression, SelectExpression, Boolean) Constructor
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.
Creates a new instance of the ExceptExpression class.
public ExceptExpression (string alias, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression source1, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression source2, bool distinct);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.ExceptExpression : string * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * bool -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.ExceptExpression
Public Sub New (alias As String, source1 As SelectExpression, source2 As SelectExpression, distinct As Boolean)
Parameters
- alias
- String
A string alias for the table source.
- source1
- SelectExpression
A table source which is first source in the set operation.
- source2
- SelectExpression
A table source which is second source in the set operation.
- distinct
- Boolean
A bool value indicating whether result will remove duplicate rows.
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