示例#1
0
 public static bool IsSimpleType(Type type)
 {
     return(DbTypes.ContainsType(type) && type != typeof(object));
 }
示例#2
0
文件: TableMeta.cs 项目: lipz89/XData
 public bool IsSimpleType()
 {
     return(DbTypes.ContainsType(Type) && Type != typeof(object));
 }