Hello all,
Sorry, new user alert!
Could someone tell me how to do this using the best possible performance, I'm simply reusing the same view with different filters to count the number of records returned for reporting purposes, this is just one of the filters
predcancel.Add(FeMortgagelistjoinFields.Status == 778) ;
mortgagelistcount.Fill(0, null, true, predcancel);
Int32 cancel = mortgagelistcount.GetDbCount();
For a start, I really do not need all the rows returning, just the count and this seems to be returning all records anyway despite the benefit filter
Thank you for your help,
Matthew