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