My predicate:
#Predicate<Transaction>{ transaction in transaction.date! >= startDate && transaction.date! <= endDate && transaction.category! == "Income" && transaction.ttype! == "Business" }
is failing with:
The operation couldn’t be completed. (SwiftData.SwiftDataError error 1.)
The release notes for iOS 17 State:
Fixed: #Predicate does not support UUID, Date, and URL properties. (109539652)
Does anyone have any suggestions?