-
Epsilon-MongoDB 与 EMC 的集成
资源介绍
Epsilon-MongoDB 集成
Eclipse 插件扩展了 Epsilon 的模型连接 (EMC) 层,支持使用语言查询 MongoDB 数据库以执行代码生成、模型验证和模型到模型转换等活动。 MongoDB EMC 驱动程序支持对本地托管的 MongoDB 数据库进行读/写访问。
例子
以下 EOL 片段演示了在 MongoDB 数据库中创建 Post 和嵌套 Comment 文档。
DB.reset();
for (i in 1.to(5)) {
var post : new DB!Post;
post.title = "Post " + 1;
post.comments = new Sequence;
for (j in 1.to(5)) {
var comment : new DB!Comment;
comment.text = "Comment "