Guest User

Untitled

a guest
Feb 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. // create Jedi class
  2. classes.Jedi = class Jedi extends ODM {};
  3.  
  4. // import Jedi documents
  5. db.import('Jedi', '{\"luke\":{\"firstName\":\"Luke\",\"lastName\":\"Skywalker\",\"_id\":\"luke\"}}');
  6.  
  7. // access the created instance
  8. instances.luke.firstName;
  9. // => 'Luke'
Add Comment
Please, Sign In to add comment