now a days i am working on blackberry within that i parse some JSON Array into String and from that i convert it into Hashtable like this
this is my JSON string
[ 
  { 
        "StdID":"A1",
  "RollNo":"23",
 "Class":"First"
}, 
{ 
        "StdID":"A2",
  "RollNo":"13",
 "Class":"First"
}, 
{ 
        "StdID":"A3",
  "RollNo":"53",
 "Class":"Second"
}, 
{ 
        "StdID":"A4",
  "RollNo":"33",
 "Class":"Third"
}, 
]
and i parse this into hashtable as
Hashtable t1=new Hashtable();
t1.put("StdID","A1");
t1.put("RollNo","23");
t1.put("Class","First");
Hashtable t2=new Hashtable();
t2.put("StdID","A2");
t2.put("RollNo","13");
t2.put("Class","First");
Hashtable t3=new Hashtable();
t3.put("StdID","A3");
t3.put("RollNo","53");
t3.put("Class","Second");
Hashtable t4=new Hashtable();
t4.put("StdID","A4");
t4.put("RollNo","33");
t4.put("Class","Third");
Hashtable main=new Hashtable ();
main.put(new Integer(1), t1);
main.put(new Integer(2), t2);
main.put(new Integer(3), t3);
main.put(new Integer(4), t4);
So can i/ how can i retrieve the value as
select students which have First class
so any one can help me? is this possible by LINQ ?
 
     
     
     
     
    