Scott,
I've been through all your development videos, DAL videos, client centric videos, etc. They are great for learning but when I take what I learn from the videos along with examples and attempt to apply it to "real" situations I hit roadblock after roadblock. For example:
All the work using DAL2 failed. Petapoco won't do anything at all when I use the ColumnName decoration, and when I remove it and force all the properties in the model to match the database it still refuses to map correctly, although it will retrieve rows. Somewhere between the half dozen columns in the examples and the 30 or so in my tables things break and all petapoco does is silently logs something to the event log that says basically nothing. Object reference not found.
All the work moving an old VB module "as is" as much as possible also failed. None of the .ascx will load and punt with a module load exception, so you can't even debug. Even .ascx straight from the Christoc VB template in the same project punt with the same error once I add a control.
Even taking the simple CS DAL2 template and attempting to alter the controls on the view to use the new fields from a database view failed, absolutely nothing happens, but I suspect that's due to having the column decorations there. I haven't had a chance to go back and redo this test by removing the ColumnName decorations, so maybe one simple thing will work.
In any case not having any usable reference material makes this slow and tedious, and I really don't have the time to do everything hunt and peck. Maybe there's some magic extra decoration that needs to be there to get ColumnName decorations to work, but without a manual or equivalent the only hope I have is finding something in some example somewhere. The fact that the DNN petapoco implementation choses to silently log errors with no indication how to repair them leads me to believe it's not ready for prime time.