Catnap.Database.Sqlite.SqliteValueConverter.SqliteValueConverter C# (CSharp) Method

SqliteValueConverter() public method

public SqliteValueConverter ( ) : System
return System
        public SqliteValueConverter()
            : base(new DefaultType(),  new Dictionary<Type, IType>
        {
            { typeof(bool), new BooleanIntType() },
            { typeof(Guid), new GuidStringType() },
            { typeof(DateTime), new DateTimeTicksType() },
            { typeof(TimeSpan), new TimespanTicksType() }
        })
        {
        }
SqliteValueConverter