ActiveRecordPattern.ConvertType.FromCLR C# (CSharp) Method

FromCLR() public static method

public static FromCLR ( Type Type ) : string
Type System.Type
return string
        public static string FromCLR(Type Type)
        {
            setTypes();
            try
            {
                return dictionaryType[Type.FullName];
            }
            catch
            {
                return "NVARCHAR(50)";
            }
            
        }