Hi all,my question is very simple how i can refresh a retrived data from a view in LLBL
Hi ledaker.
Just retrieve it again.
ledaker wrote: Hi all,my question is very simple how i can refresh a retrived data from a view in LLBL
ledaker wrote:
Depends on what you mean with 'refresh'. Did you change the data in the collection?
i change data in the database
Then fetch again is the way. Be aware of cleaning the view before refetch it:
using (DataAccessAdapter adapter = new DataAccessAdapter()) { view.Clear(); adapter.FetchTypedView(view); }