-2

Even though MongoDB is a schema-less DB but there is a requirement in my project where I have to map my classes to the Database objects and prefer to have the data modelling for the same. Please suggest some Data-modelling tools for MongoDB to map the DB to Classes and Objects.

Rishi
  • 5,869
  • 7
  • 34
  • 45
SSS
  • 1
  • 1
  • 2

2 Answers2

1

Moon Modeler is a data modeling tool for MongoDB and Mongoose (ODM)

Vaclav
  • 341
  • 3
  • 7
0

I think you want to model your applications and persist your data in MongoDB. So it depends on what framework/language are you using for application.

I did a quick web search to get these ODM (Object-Document-Mapper) options recommended to work with MongoDB for some of the popular languages.

ruby

java

python

Rishi
  • 5,869
  • 7
  • 34
  • 45
  • Thanks. I did some research on DBSchema and Hackolade. Hackolade is really cool but very expensive. – SSS Oct 04 '17 at 22:32