i have arraylist in which i store string dynamically.
exm:
Arraylist a = new Arraylist();
string[] Url = {"ram" ,"syam" }
foreach (var s in Url)
{
a.Insert(0,s);
var person = (from p in db.person
where a.contain(p.name)
select p).tolist();
}
this is my query.but problem is that query filter only works for first item added in arraylist. if first add "syam" and second add "ram" then only fetch "syam" record from the database.i wanna fetch both record from the database . so i have to do ..?
List<string> a = new List<string>();a.Add("foo");a.Add("Bar");– Blachshma Nov 22 '12 at 11:57