DataAccessBase.UpdateEntity

This version of UpdateEntity allows you to specify which fields to update and so is a bit more efficient as it only checks for specific fields in the database and the underlying table.

public abstract bool UpdateEntity(object entity, string table, 
			string keyField, string propertiesToSkip)

Parameters

entity
entity to update

table
the table name to update

keyField
keyfield used to find entity

propertiesToSkip

Overloads