diff --git a/.directory b/.directory deleted file mode 100644 index fab6437..0000000 --- a/.directory +++ /dev/null @@ -1,7 +0,0 @@ -[Dolphin] -Timestamp=2016,5,12,10,37,46 -Version=3 -ViewMode=1 - -[Settings] -HiddenFilesShown=true diff --git a/README.md b/README.md index 896baf4..23ea9cf 100644 --- a/README.md +++ b/README.md @@ -1 +1,23 @@ -# Nut \ No newline at end of file +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: +--- +```cpp + auto q = FROM(db.posts()) + WHERE(Post::id() == %1) + BIND(postId); + auto posts = q->toList(); + // now posts is a QList contain all posts in + // database that has id equal to postId variable +```