Am using enterprise library data access application block... is there any performance impact of using System.Data.DbType Vs System.Data.SqlType?
And also, would like to know performance impact for the statement: DatabaseFactory.CreateDatabase("MyDB")
Vs
new SqlDatabase(myConnectionString);
Thanks.