Beavon Ondari

Beavon Ondari

  • NA
  • 40
  • 54.4k

Write a program to iterate through each car in the list

Jun 4 2016 2:23 AM

A SharePoint 2013 Custom List, Employee Cars, contains entries for each employee of the company. Using the SharePoint Client Object Model (CSOM), Write a program to iterate through each car in the list, where the production year is greater than 2005. The List contains the following fields: Make (String), Model (String), Registration (String) and Year of Production (Int). 

Please, Can someone help me to solve the question using the sheet provided to show your answer.

using Microsoft.SharePoint.Client;

using System;

using System.Text;

namespace EmployeeCarsApplication

{

class Program

{

static void Main(string[] args)

{

ClientContext spContext = new ClientContext("http://ExampleSharePointURL");

 
 
 

Code Goes Here

 
 
 
 

Console.ReadLine();

}

}

}


 

Answers (1)