with di query I can get the specified list object from the collection the property "Items" froom the SPListCollection class.
using (ClientContext context = new ClientContext("http://sp2010dev/sites/Reply"))
{
NetworkCredential Cred = new NetworkCredential("administrator", "Password.123", "virtualsp.dev");
context.Credentials = Cred;
var web = context.Web;
context.Load(web);
context.ExecuteQuery();
try{
using (SPSite scSite = new SPSite(fullsite))
{
using (SPWeb webRoot = scSite.OpenWeb())
{
SPListItem itemSelezionato = (from SPListItem item in webRoot.Lists["ContentIndex"].Items
has anybody know how could get the same thing using the class "Web" rather than SPWeb ? With this class I don't have the "Items" property.
