QueryChainableBuilderType
public protocol QueryChainableBuilderType
Utility protocol for QueryChainBuilder. Used in fetch methods that support chained query builders.
-
The
DynamicObjecttype for the queryDeclaration
Swift
associatedtype ObjectType : DynamicObject -
The
SelectResultTypetype for the queryDeclaration
Swift
associatedtype ResultType : SelectResultType -
The
Fromclause specifies the source entity and source persistent store for the queryDeclaration
Swift
var from: From<ObjectType> { get set } -
The
Selectclause to be used for the queryDeclaration
Swift
var select: Select<ObjectType, ResultType> { get set } -
The
QueryClauses to be used for the queryDeclaration
Swift
var queryClauses: [QueryClause] { get set }
View on GitHub
QueryChainableBuilderType Protocol Reference