Maybe its just me but I am not a big fan of using the DBContext Generator as it adds overhead to development.
I like using the Entity Framework DBContext API but want to get rid of the hand coding of POCO classes. I am wondering if there are any T4 templates out there that can connect to MySQL or SqlServer and Generate the POCO classes from the database. Using the DBContext Generator template you have to update your database, update your model, re-run the T-4 templates to generate POCO classes. I would like to cut the steps down so that I don't have to generate and maintain a model.
Are there any T4 alternatives to the DBContext Generator that create the POCO classes and don't require an edmx model file?