Category: ADO.net/ Entity Framework

Memory management in .Net

main concern for any application whether application is window based or web based. In .Net, CLR has garbage collector that executes as a part of our program and responsible for reclaiming the memory of no longer used objects. Garbage collector free the memory for objects that are no longer referenced and keeps the memory for future allocations. Advantage of Garbage… Read more →

Entity framework questions

1) What is the advantage and disadvantage of Entity Framework Advantages: One common syntax (LINQ) for all object queries whether it is database or not , Pretty fast if used as intended , easy to implement SoC , less coding required to accomplish complex tasks. Its fast and straight forward using LINQ/FE objects For Add/Modify/Delete/Update. Easy to map business objects… Read more →