• 1Installation
  • 2Preliminary Knowledge
  • 3Create MObjects
  • 4Manipuate MObjects
  • 5Delete MObjects
  • 6Persistence
  • 7Namespace Free
  • 8Functional Support

MObject.apex

  • Docs
  • Tutorials
Getting started with MObject.apex

Functional Support

MObject.apex has builtin functional support. We can use functional chaining like this:

MObject.create(pb)
    .put('Name', 'new pricebook')
    .put('Opportunities', new List{ ... })
    .persist();