SQLDataAdapter Configuration Wizard

  • Thread starter Thread starter RL Stevenson
  • Start date Start date
R

RL Stevenson

Using the SqlDataAdapter Configuration Wizard in C#.Net 2003, the generated
procedures often fail to recognize my user-defined types in the database and
substitute nvarchar(50) instead.

I have caught the Wizard sometimes using the user-defined types correctly,
but not frequently.

Any suggestions on how to get the Configuration Wizard to reliably generate
correct code for user-defined types?
 
Don't use wizards.
Instead use a tool like CodeSmith, that is flexible and configurable, to
generate proper code.
www.codesmithtools.org
(note that v2.6 without (excellent) ide is still free)
 
Back
Top