VS 2010 rc; SQL Server 2008 eXpress; .net 3.5; database - northwind;
all options in tt template are set by default. It simply doesn't generates some tables in that bunch of code :
region ' Schemas '
if(DataProvider.Schema.Tables.Count == 0)
{
DataProvider.Schema.Tables.Add(new ProductsTable(DataProvider));
DataProvider.Schema.Tables.Add(new OrdersTable(DataProvider));
DataProvider.Schema.Tables.Add(new OrderDetailsTable(DataProvider));
DataProvider.Schema.Tables.Add(new CategoriesTable(DataProvider));
}
#endregion
Also i've got a warning telling me it will be compile under 4.0 framework but the project is on 3.5.
Any suggestions?
Victor.