This commit is contained in:
John Estropia
2026-07-15 11:50:43 +09:00
parent 7db1cfecfb
commit 890e150b95
135 changed files with 2895 additions and 2526 deletions
+2 -2
View File
@@ -32,7 +32,7 @@ import CoreData
/**
The `Where` clause specifies the conditions for a fetch or a query.
*/
public struct Where<O: DynamicObject>: WhereClauseType, FetchClause, QueryClause, DeleteClause, Hashable {
public struct Where<O: DynamicObject>: WhereClauseType, FetchClause, QueryClause, DeleteClause, Hashable, Sendable {
/**
Combines two `Where` predicates together using `AND` operator
@@ -432,7 +432,7 @@ public struct Where<O: DynamicObject>: WhereClauseType, FetchClause, QueryClause
// MARK: AnyWhereClause
public let predicate: NSPredicate
public nonisolated(unsafe) let predicate: NSPredicate
public init(_ predicate: NSPredicate) {