I need to get all fields from my list template? How can i do this?

var web = site.OpenWeb();
var template = web.ListTemplates["SomeTemplate"];
template ... ???? -There is no method to get fields.
link|improve this question

75% accept rate
feedback

1 Answer

up vote 2 down vote accepted

There is no built-in method to get all fields from a list template. The only way you can get the fields is by parsing the Schema XML of the list and getting all <Field> and <FieldRef> tags.

Easier is to create a list instance, which you can query later on with the following examples.

To get all fields from a list you can use the SPList.Fields Property, e.g. like so:

foreach (SPField spField in myList.Fields)
{
    //your code here
}

MSDN SPListItem.Fields

You can also get all fields from a list item "in reverse" SPListItem.Fields Property. You might also be interested in this SO thread: Check if a List Column Exists using SharePoint Client Object Model?

link|improve this answer
1  
This is so bad. Sharepoint disappointing me. I want programmatically update my list in site to match template.Becouse after redeployment of feature new fields not appear in lists. Maybe there is another way to do it? – Evgeny Feb 23 '11 at 12:06
2  
Sorry, you cannot update existing list based on a new list definition. You can only update content types - see this post for more information: social.msdn.microsoft.com/Forums/en/sharepointdevelopment/… – moontear Feb 23 '11 at 12:13
1  
Thanks a lot... – Evgeny Feb 23 '11 at 12:59
feedback

Your Answer

 
or
required, but never shown

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