Using the Client Object Model (C#) in SharePoint 2010, how can I determine if a specified column (field) name exists in a given List?
Thanks, MagicAndi.
|
Using the Client Object Model (C#) in SharePoint 2010, how can I determine if a specified column (field) name exists in a given List? Thanks, MagicAndi. |
|||
|
|
|
Server Object Model
Client Object Model
|
|||||||||
|
|
Just found this while searching for the same thing, but it looks like Sharepoint 2010 has something built in for this, at least for the Server model: Not sure if it exists for Client side though. Figured it would be a good place to store this information however. |
||||
|
|
|
I ended up retrieving the details of the list's fields prior to my operation, and saving them in a generic list of structs (containing details of each field). I then query this (generic) list to see if the current field actually exists in the given (SharePoint) list.
|
||||
|
|