i am facing issue with create table in DBObject (DBAccess ORM) with declare bool type and Int type field, and also i am not able to declare "description" filed.
//Swift Code:-
import UIKit
@objc(Circlelist)
class Circlelist: DBObject {
dynamic var name : String!;
dynamic var group_id : NSNumber!;
dynamic var group_id : Int!; //Getting issue here
dynamic var desc : String!;
dynamic var description : String!; //Getting issue here
dynamic var address : String!;
dynamic var latitude : String!;
dynamic var longitude : String!;
var isdeleted : Bool = false; //Getting issue here
}
When i wright "dynamic var isdeleted : Bool!;" at that time give error like "Property cannot be marked dynamic because its type cannot be represented in Objective-C".
and when i wright "dynamic var isdeleted : Bool;" at that time give error like "Class circle list has no initialiser".
Please suggest me perfect solution to know how to fix this issue, give details about DataType and more information about DBAccess.