How do I best convert a DbType to System.Type? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T17:32:39Z http://stackoverflow.com/feeds/question/91160 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/91160/how-do-i-best-convert-a-dbtype-to-system-type 0 How do I best convert a DbType to System.Type? AlexDuggleby 2008-09-18T09:21:24Z 2008-09-18T10:45:34Z <p>How do I best convert a System.Data.DbType enumeration value to the corresponding (or at least one of the possible corresponding) System.Type values?</p> <p>For example:</p> <pre><code>DbType.StringFixedLength -&gt; System.String DbType.String -&gt; System.String DbType.Int32 -&gt; System.Int32 </code></pre> <p>I've only seen very "dirty" solutions but nothing really clean.</p> <p>(yes, it's a follow up to a different question of mine, but it made more sense as two seperate questions)</p> http://stackoverflow.com/questions/91160/how-do-i-best-convert-a-dbtype-to-system-type/91177#91177 2 Answer by smink for How do I best convert a DbType to System.Type? smink 2008-09-18T09:24:53Z 2008-09-18T10:45:34Z <p>AFAIK there is no built-in converter in .NET for converting a SqlDbType to a System.Type. But knowing the mapping you can easily roll your own converter ranging from a simple dictionary to more advanced (XML based for extensability) solutions.</p> <p>The mapping can be found here: <a href="http://www.carlprothman.net/Default.aspx?tabid=97" rel="nofollow">http://www.carlprothman.net/Default.aspx?tabid=97</a></p> <p>A example of a converter can be found here: <a href="http://www.koders.com/csharp/fid81BF77665BE889E51EB9B3861C9BFBDE4A1A7AC5.aspx" rel="nofollow">http://www.koders.com/csharp/fid81BF77665BE889E51EB9B3861C9BFBDE4A1A7AC5.aspx</a></p> http://stackoverflow.com/questions/91160/how-do-i-best-convert-a-dbtype-to-system-type/91189#91189 1 Answer by Ollie for How do I best convert a DbType to System.Type? Ollie 2008-09-18T09:25:56Z 2008-09-18T09:25:56Z <p>I'm not sure what you classify as "dirty" but here is a link to a quite neatly defined Converter class for T-SQL (SQL Server)</p> <p><a href="http://www.koders.com/csharp/fid81BF77665BE889E51EB9B3861C9BFBDE4A1A7AC5.aspx" rel="nofollow">http://www.koders.com/csharp/fid81BF77665BE889E51EB9B3861C9BFBDE4A1A7AC5.aspx</a></p>