Couple of quick procedural questions:
I started with the VS 2013 C# DAL2 Template. I get the Item.cs file as part of the template. Fine, I can work with it. Now, I am changing the definitions in Item.cs and also adding additional tables and corresponding classes. Using DAL2, is there any sort of upgrade functionality, or am I hand coding the SqlDataProvider files to track update son my own? In asp.net I had been using the Entity Framework. I am fine with DAL2 but didn't want to miss out on proper procedures for migrating databases. I guess my current plan is to
1) Create the databases in ServerManagementStudio
2) Write classes to match
3) When it is time to package up, I am going to use the SMS script tool to create scripts and hand insert those into SqlDataProvider
Is it common to use enable-migrations on DNN tables?
Thanks
Kevin