예제 #1
0
파일: TypeVisitor.cs 프로젝트: lipz89/XData
        internal string GetTypeName(Type type)
        {
            var t = typeNames.FirstOrDefault(x => x.Type == type);

            if (t != null)
            {
                return(t.Name);
            }
            return(MapperConfig.GetTableName(type));
        }