adspace


Explain me how does linq work?

Answer Posted / Amit Kumar Dwivedi

LINQ works by providing a consistent syntax (query expressions) to query data from different data sources like arrays, lists, databases, and more. When a LINQ query is executed, it's translated into a series of method calls that perform the desired operation on the data source, such as filtering or sorting. The resulting data is then returned as an enumerable collection.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1143