Okay, I have successfully created a Formview and used an LLBLGenProDataSource to populate an Entity and insert it into a DB.
What I would like to know is how can I use a FormView to populate an Entity and trigger it's Entity.Save() method directly, without using an LLBLGenProDataSource?
It seems unnecessary to create a datasource which is potentially hitting a DB on page load just to use the insert funcitonality oif teh datasource when you can make an Entity and call it's Save method.