Example #1
0
        public static string PostProcessSQLiteType(Utility.ColumnInfo column, string dotnetName)
        {
            object[] parms = new object[] { column, dotnetName };
            string   body  = (string)GetPreProcessSQLiteMethod.Invoke(null, parms);

            return(body);
        }
Example #2
0
 private static DotNetType PostProcessDotnetTypeForSqlServer(Utility.ColumnInfo column, string dotnetTypeName)
 {
     object[] parms = new object[] { column, dotnetTypeName };
     dotnetTypeName = (string)GetPreProcessSqlServerMethod.Invoke(null, parms);
     return(Utility.DotNetTypes.Single(t => t.Name == dotnetTypeName));
 }