Application Block Usage

  • Thread starter Thread starter Jeff S
  • Start date Start date
The EnterpriseLibrary Data Access (1.1 and 2.0) are very good, IMHO.

They also force you to create a correct DataTier object.

Your DataTier object should return

DataSets
IDataReaders
Scalars
void (nothing)

back to your business layer.

When updating data, you'll usually send data into the DataTier object, and
get null back. (aka, you just want to know it worked..)

Remember, the EntLib does NOT replace your application's datatier....its a
helper for it.

...
 
Back
Top