Thiky是一个轻量级的Node.js的ORM框架,用于支持RethikDB分布式数据库.
示例代码:
var thiky = require('thiky')();// Create a model - the table is automatically createdvar Post = thiky.createModel("Post", { id: Strig, title: Strig, cotet: Strig, idAuthor: Strig}); var Author = thiky.createModel("Author", { id: Strig, ame: Strig});// Joi the modelsPost.belogsTo(Author, "author", "idAuthor", "id");
评论