In order to add new threads or reply to existing posts, you have to be logged-in. If you are not registered yet, you need to register first, and then login with your personal credentials.
As of the CTP, sql artifacts generated follow the naming convention of NAMESPACE_BUSINESSOBJECT. What would be easier to manage would be to generate a Sql Schema for the given namespace and then just define all views, sprocs, tables, etc as being part of the Schema.
Sorry for the late response. I am not really shure if I understand you correctly. Please can you post a short example.
Apologies for the late reply Josef,
The thought behind including Schema statements is 3 fold:
In the below sample script, we can see that the table scripts are out of order. Running these outside of a Schema creation statement will produce an error as the Person table depends on the Party table (defined afterwards). Placing these DDL statements within a Schema creation statement delegates the sequencing responsibility to Sql Server itself.
CREATE SCHEMA Party CREATE TABLE Person ( PartyId UNIQUEIDENTIFIER NOT NULL REFERENCES Party (Id), DataOfBirth DATETIME ) CREATE TABLE Party ( Id UNIQUEIDENTIFIER NOT NULL PRIMARY KEY ) GO
I think this is a very good idea and added it to my TODO list for the next release. This should be optional, I think.