Mapping a BLL class to a DB table
Hi,
Assume there is table in the DB called Employee that has the following columns "EnteredDate" and "UpdatedDate"
Obviousely the updateDate column is used for dealing with concurrecies. If i map this table to the BLL entity Employee, should i create a seperate fields "nteredDate"and "pdatedDate" in class Employee?
TY