-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Description
Below code wont work if the title is compared against a lower case string. It works only if the match is accurate. My equals method with ignorecase didnt work.
where cm.title.ToLower() == "Category:Mammals of Indonesia".ToLower() throws error
var pages = (from cm in wiki.Query.categorymembers()
where cm.title == "Category:Mammals of Indonesia"
orderby cm descending
select cm.title)
.ToEnumerable();
Metadata
Metadata
Assignees
Labels
No labels