stephencelis / SQLite.swift

A type-safe, Swift-language layer over SQLite3.
MIT License
9.67k stars 1.56k forks source link

Hello, may I ask the results of the search how the dictionary nested the dictionary, at the time of the query #935

Closed zhangjianjun056 closed 3 years ago

zhangjianjun056 commented 5 years ago

Hello, may I ask the results of the search how the dictionary nested the dictionary, at the time of the query.

Now: { "age": 18, "personId":1, "name": "zhangsan", "height": 180, "weight": "60", "d_name": "wangcai", "d_age": 2 }

Expectation: { "age": 18, "personId":1, "name": "zhangsan", "height": 180, "weight": "60", "dog": { "d_name": "wangcai", "d_age": 2 } }

nathanfallet commented 3 years ago

Duplicate of #998