As my questeion above i would like to iterate through ALL System.Data.SqlDbType
s. How is this possible?
I'm thinking about something like this:
foreach (var type in System.Data.SqlDbType(s))
{
..code
}
I know System.Data.SqlDbType is no List or IEnumerable :)
You may try this:
foreach (SqlDbType type in Enum.GetValues(typeof(SqlDbType)))
{
..code
}