Go to file
Hamed Masafi 10e3ea18ad Readme 2016-05-12 10:55:07 +04:30
include First commit 2016-05-12 10:38:58 +04:30
src First commit 2016-05-12 10:38:58 +04:30
test First commit 2016-05-12 10:38:58 +04:30
.gitignore Initial commit 2016-03-09 11:05:49 +03:30
LICENSE Initial commit 2016-03-09 11:05:49 +03:30
README.md Readme 2016-05-12 10:55:07 +04:30
nut.pri First commit 2016-05-12 10:38:58 +04:30

README.md

Nut

Advanced, Powerful and easy to use ORM for Qt5

Features:

  • Easy to use
  • Automatically create and update database
  • IDE auto complete support
  • Table join detect

Sample code for reading:

    auto q = FROM(db.posts())
            WHERE(Post::id() == %1)
            BIND(postId);
    auto posts = q->toList();
    // now posts is a QList<Post*> contain all posts in
    //  database that has id equal to postId variable