You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With reference to #35, I am trying to build a series of queries to do my own validation before saving/updating my models. The docs suggest to retrieve the table like this
do {
let table = Grade.getTable()
} catch {
// Error
}
and then use it to build a plain old Query using Swift-Kuery. However, getTable() returns a Table, which obviously has none of the keys of Grade, because it is not a Table).
Any pointers? :)
The text was updated successfully, but these errors were encountered:
With reference to #35, I am trying to build a series of queries to do my own validation before saving/updating my models. The docs suggest to retrieve the table like this
and then use it to build a plain old
Query
using Swift-Kuery. However,getTable()
returns aTable
, which obviously has none of the keys ofGrade
, because it is not aTable
).Any pointers? :)
The text was updated successfully, but these errors were encountered: