Skip to content

Latest commit

 

History

History
25 lines (11 loc) · 304 Bytes

GTD.md

File metadata and controls

25 lines (11 loc) · 304 Bytes

Get Things Done

SQL

Dao Configuration

PostDao = Mapper.map("posts");
CommentDao = Mapper.map("comments");

PostDao.many("comments", CommentDao, "postId");
CommentDao.one("post", PostDao, "postId");

Has Many

A post has many comments

Many to Many

Many through