I have to refactor some sharepoint 2010 code from my collegue. Everytime he needs to access a list he does this:

SPContext.Current.Web.Site.OpenWeb().Lists["List"];

I used to do this:

SPContext.Current.Web.Lists["List"];

What's the difference between these two and whats the more efficient way?

link|improve this question

Please shift this question to sharepoint.stackexchange.com – Amar Palsapure Jan 9 at 9:45
feedback

2 Answers

up vote 4 down vote accepted

The second is much more efficient way.

In the first method, you are creating a new SPWeb object through the OpenWeb() call which is an expensive call. Note only that, you must also explicitly dispose this object manually when you are done using that.

Read here: http://msdn.microsoft.com/en-us/library/aa973248(v=office.12).aspx

link|improve this answer
feedback

Agree with Madhur

Use the 2st approach as it will not do any memory leakage

By the way : In SP2010 there is a new method to get SPList

SPContext.Current.Web.Lists.TryGetList("ListName");

use that

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.