summaryrefslogtreecommitdiff
path: root/odb/relational/common.txx
AgeCommit message (Collapse)AuthorFilesLines
2018-05-24Update copyright yearKaren Arutyunov1-1/+1
2017-01-03Update copyright yearBoris Kolpackov1-1/+1
2015-07-03Implement nested id supportBoris Kolpackov1-3/+3
Now the 'id' specifier can optionally include the data member path to the id inside the composite value. For example: #pragma db id(first) std::pair<int, int> p; Note that one somewhat counter-intuitive aspect of this new feature is that the whole member marked with id ('p' in the above example) and not just the actual id member ('p.first' in the above example) is treated as readonly. Such nested id also cannot be automatically assigned (auto specifier).
2015-07-02C++ type mapping support for container elementsasBoris Kolpackov1-1/+1
2015-07-01C++ type mapping support for data membersBoris Kolpackov1-3/+9
2015-06-22Implement member type mapping, more m.type() cleanupsBoris Kolpackov1-1/+1
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2015-02-04Implement object loading viewsBoris Kolpackov1-9/+17
See section 10.2 in the manual for details.
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2012-02-22Add support for composite object idsBoris Kolpackov1-0/+112
New pragma id_type (member). New test: common/composite-id. The composite example has also been updated.