Open GoogleCodeExporter opened 9 years ago
CodeGenerator.cs static CodeTypeReference ToCodeTypeReference(Column column) change $t code to: System.Type t; try { t = System.Type.GetType(column.Type); } catch (Exception) { t = int.MaxValue.GetType(); } ==================== ==================== DbLinq.Util TypeLoader.cs public static Type Load(string name) change return code to: try { return Type.GetType(name); } catch (Exception) { return int.MaxValue.GetType(); } hope this helps
Original issue reported on code.google.com by msg7...@gmail.com on 14 Feb 2011 at 12:55
msg7...@gmail.com
Original issue reported on code.google.com by
msg7...@gmail.com
on 14 Feb 2011 at 12:55