Getting Started with ColdFusion 9 ORM Integration - Slides Available
Posted At : October 19, 2009 2:55 PM | Posted By : Bob Silverberg
Related Categories: ColdFusion, CF ORM Integration, CFinNC, Presentations
The slides, which include all of the sample code from my CFinNC presentation, Getting Started with ColdFusion 9 ORM Integration, are now available. Click on the link below to download them. I developed these slides using Keynote, and attempted to save them as a PowerPoint presentation, but ended up with slides that looked like crap, so I saved them as a PDF for the download. The slides look good, but the file is big. Sorry about that.
If anyone is interested in having me deliver this presentation to a ColdFusion User Group via connect please feel free to leave me a comment, or send me an email.
Attachments:
- Getting Started with ColdFusion 9 ORM Integration Slide Deck - in PDF Format (5 MB)
Here is the description of the presentation:
We've all heard the buzz about CF9 ORM integration, but exactly what is it, and how can I use it? This session will demystify the idea of ORM by introducing the concepts that you need to know to get started using it right away. Not an object oriented developer? No problem! As long as you know what an object is, and a little bit about cfcs, this session will help you get past the buzzwords and be productive with Hibernate on your next project. Use Hibernate currently, but not CF? Great! Come and see how the ColdFusion engineering team have made it super simple to use Hibernate, without losing any of the flexibility you're accustomed to.
Thanks,
byron
No, you will not have a getComment() method. Singularname is used to generate the add, remove and has methods. So, looking at the comments property in the example, you'll get 5 methods generated:
getComments() - returns an array of comment objects
setComments() - you can pass an array of comment objects to this method - one normally will not use this method
addComment() - used to add a single comment to the collection
removeComment() - used to remove a single comment from the collection
hasComment() - used to check whether the post has any comments - can also be used to check for a specific comment, if a comment object is passed in
Does that clear things up?
byron