Azavea.Open.DAO.SQL.SqlDaLayer.PreProcessPropertyValues C# (CSharp) Method

PreProcessPropertyValues() protected method

Override this method if you need to do any work to convert values from the object's properties into normal SQL parameters. Default implementation does nothing. This is called prior to inserting or updating these values in the table.
protected PreProcessPropertyValues ( string table, object>.IDictionary propValues ) : void
table string The table these values will be inserted or updated into.
propValues object>.IDictionary A dictionary of "column"/value pairs for the object to insert or update.
return void
        protected virtual void PreProcessPropertyValues(string table,
            IDictionary<string, object> propValues)
        {
        }