The IdeaBlade CAB Application Wizard always copies the sample model of the tutorial database into the solution for the newly-created application. It adjusts the namespace in which the model is defined based on the value specified for the Model Namespace (default suggested value is "companyname.appname.Model"). It (and the Visual Studio item wizards that will be used later) also adjusts components that refer to the model use this namespace.
This capability would be used if you have a model project already defined (perhaps in another DevForce solution) within a different namespace. You would then remove the sample Model project from the wizard-generated solution and replace it with your existing Model project.
Some additional surgery on the existing model will be required:
1. All model classes must inherit, directly or indirectly from IdeaBlade.Common.EntityModel.CommonEntity. We recommend using an intermediate BaseEntity class like the one in the sample model.
2. The classes in the Common and QuasiCommon folders need to be present in the model.
3. There must be an entity that implements the IUser interface and you may need to adjust the login code to perform authentication and authorization using your model information.
Feel free to ask additional questions--we're exploring the ins and outs of this process too.
Hope this helps.
Bill Jensen