ActiveRecordPattern.ConvertType.FromSQL C# (CSharp) Метод

FromSQL() публичный статический Метод

public static FromSQL ( Type Type ) : string
Type System.Type
Результат string
        public static string FromSQL(Type Type)
        {
            setTypes();
            try
            {
                return dictionaryType.FirstOrDefault(x => x.Value == Type.ToString()).Key;
            }
            catch
            {
                return "System.String";
            }

        }
    }