I try to construct 3-tier application. In DAL
I get data from database
(No-SQL
) to DataSets
.
In BLL
I process this data if it is necessary. In PL
I show appropriate data.
The question is:
If data in database
are still updating, and I need to have at once newest rows , should I update DataSet
in BLL
with some timer or somewhere else?