Archives for Best Practises
Deferred vs Immediate Query Execution In LINQ
Deffered Query Execution: In .NET when you write a LINQ query it actually performs the querying only when the LINQ result is accessed. This phenomenon of LINQ is called deferred…
How to crack browser cache issue?
When we access any web application, our browser hits the server and gets all the required resource/content files and cache those for further requests to avoid latency and improve a…