Azavea.Open.DAO.PostgreSQL.PostgreSqlDaLayer.PostgreSqlDaLayer C# (CSharp) Method

PostgreSqlDaLayer() public method

Construct the layer. Should typically be called only by the appropriate ConnectionDescriptor.
public PostgreSqlDaLayer ( PostgreSqlDescriptor connDesc ) : System
connDesc PostgreSqlDescriptor Connection to the PostGreSQL / PostGIS DB we'll be using.
return System
        public PostgreSqlDaLayer(PostgreSqlDescriptor connDesc)
            : base(connDesc, true)
        {
            _coerceableTypes = new Dictionary<Type, TypeCoercionDelegate>();
            _coerceableTypes.Add(typeof(IGeometry), CreateGeometry);
        }