show/hide this revision's text 3 edited tags
show/hide this revision's text 2 clarified about mapping tables

Suppose I have a string 'nvarchar(50)', which is for example the T-SQL string segment used in creating a table of that type. How do I best convert that to an enum representation of System.Data.DbType?

Could it handle the many different possible ways of writing the type in T-SQL, such as:

[nvarchar](50) 
nvarchar 50

@Jorge Table: Yes, that's handy, but isn't there a prebaked converter? Otherwise good answer.

Thanks in advance

show/hide this revision's text 1

How do I best convert a string representation into a DbType?

Suppose I have a string 'nvarchar(50)', which is for example the T-SQL string segment used in creating a table of that type. How do I best convert that to an enum representation of System.Data.DbType?

Could it handle the many different possible ways of writing the type in T-SQL, such as:

[nvarchar](50) 
nvarchar 50

Thanks in advance