예제 #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));
 }