1amageek
1amageek
Hi @anoop4real Thank your for your message. 1. You can customize the Object path. https://github.com/1amageek/Pring/blob/master/Pring/Object.swift#L33 2. Pring also supports deep nesting. https://github.com/1amageek/Pring/blob/master/PringTests/PackReferenceTests.swift#L48
It can be given dynamically by using `setRefernece`. https://github.com/1amageek/Pring/blob/master/Pring/Object.swift#L222
@anoop4real Use DataSource for Collection get https://github.com/1amageek/Pring#datasource ```swift // get let dataSource = County Country.query.dataSource().onCompleted( { _, _ in }).get() // listen let dataSource = County.query.dataSource().onCompleted( { _, _ in...
Hi @anoop4real Do you have any other questions? Please close if it is not there.
@anoop4real ```swift @objcMembers class State: Object{ dynamic var name: String? dynamic var capital: String? dynamic var provine: Relation = .init() } @objcMembers class Province:Object { dynamic var name: String? }...
Hi. I recommend you to create social features. https://github.com/1amageek/Socialbase It is the engineer's responsibility to decide whether it has already been saved. Object already stored in Pring Initialize as follows....
https://github.com/1amageek/Pring/blob/master/PringTests/TestDocument.swift#L22 https://github.com/1amageek/Pring/blob/master/PringTests/DocumentCRUDTests.swift#L83 The test is working normally. Are you using the latest version of Pring?
@adeeldb Did you solve?
@adeeldb Hi. I was able to reproduce your behavior. The reason why String does not work is in KVO. Pring internally uses KVO. KVO does not work for enums that...