You are not logged in.
Pages: 1
I wonder if there is any way to query an aggregate through a value from a variant field that contains json objects at the ORM level?
In the case I need to search the record by searching by phone number according to the example below.
{
"_id": {
"$numberInt": "1"
},
"Name": "TRAGUETTA MOTTI",
"Doc": "075017030000113",
"Telephone": [
{
"Number": "4430345675"
},
{
"Number": "443034554445"
}
]
}
Offline
Thank you Ab for your answer. If I understood what you meant I could only do by opting for SQlite3? I'm currently using Mongodb, and I can do this query using specific MongoDb classes, but I wish I didn't have to opt for one and the other and that I could resolve the query at Mormot level. It's possible? or will I need to choose? I take very much into account what you said in a post "That changing databases by changing only one parameter is priceless"
Offline
Very good Ab, that's what I needed, I love this framework. It worked well even with use of like. Thanks for the answers.
Offline
Pages: 1