I am trying to use LINQ for certain operations. So there may be chance that millions of record will be used in LINQ.
So is it worth to use LINQ in this case? what is the maximum object limit to use LINQ?
I am reading records from database and check some conditions and store in List<Result>
. Result is a class. Then performing LINQ query in List<Result>
like grouping, counting etc. So there may be chance that min 50,000 records in List<Result>
, so in this whether its better to go for LINQ (or) reinsert the records to db and perform the queries?