LLBLGEN 3.5 Framework 4.0 SQL Server 2005.
Title.GetMulti(TitleFilter);
I just need to know by bool function whether this returned data OR no data
Regards
I'll supose theat the collection was empty before the fetch. So all you have to do is:
var dataFetched = (Title.Count > 0);
Walaa wrote: I'll supose theat the collection was empty before the fetch. So all you have to do is: var dataFetched = (Title.Count > 0);
Walaa wrote:
Thank you