I have used LINQ-to-Wiki to get pages from Wikipedia to my ASP.NET MVC webapplication.I have used the below query to get Pages having title like "India".
var wikipedia = new Wiki("Example");
var data = wikipedia.Query.allpages()
.Where(i => i.prefix == "India")
.ToList();
But it gives all pages related to "India" not only Places/Cities.How to get only Places/Cities from this query?Or how to search a place by 'categorymembers' property.Can anyone please help?