 | OrmQueryResultSetTResultExcept Method |
Do not include in the result set any objects which match the query
Namespace: SanteDB.OrmLiteAssembly: SanteDB.OrmLite (in SanteDB.OrmLite.dll) Version: 3.0.2081-alpha+d0a78774d3f97b9193d2ae2fef6d129ea9f29519
Syntaxpublic IQueryResultSet<TResult> Except(
Expression<Func<TResult, bool>> query
)
Public Function Except (
query As Expression(Of Func(Of TResult, Boolean))
) As IQueryResultSet(Of TResult)
public:
virtual IQueryResultSet<TResult>^ Except(
Expression<Func<TResult, bool>^>^ query
) sealed
abstract Except :
query : Expression<Func<'TResult, bool>> -> IQueryResultSet<'TResult>
override Except :
query : Expression<Func<'TResult, bool>> -> IQueryResultSet<'TResult> Parameters
- query ExpressionFuncTResult, Boolean
- The query of objects to except
Return Value
IQueryResultSetTResultThe excepted query
Implements
IQueryResultSetTDataExcept(ExpressionFuncTData, Boolean)
See Also