I'm converting my existence project to CSLA.NET .
Now, I'm working on 'live search' feature (like when you type letters in google search textbox and it suggests you results). My project based on ADO.NET, so I'm just using something like this:
Every time when TextBox.TextChanged event raised I'm canceling current "SearchText" operation and execute new one "SearchText" operation.
Can I do something similar in CSLA.NET?
I know, I can just ignore "FetchAsync" result but I think it would be inefficient.
Copyright (c) Marimer LLC