Azavea.Open.DAO.AbstractDaLayer.Insert C# (CSharp) Method

Insert() public abstract method

Inserts a data object record using the "table" and a list of column/value pairs.
public abstract Insert ( ITransaction transaction, ClassMapping mapping, object>.IDictionary propValues ) : int
transaction ITransaction The transaction to do this as part of.
mapping ClassMapping The mapping of the table or other data container we're dealing with.
propValues object>.IDictionary A dictionary of "column"/value pairs for the object to insert.
return int
        public abstract int Insert(ITransaction transaction, ClassMapping mapping, IDictionary<string, object> propValues);