Updated with exact classes & data
I have a new version of a Document with a new property:
public class PaperSite
{
public string Title { get; set; }
public string Html { get; set; }
public ParsedPaper ParsedPaper { get; set; } // This is a new property
}
I would like to query all the documents that don't have the property set (initially, all of them obviously). However, a query like this:
docs.Query<PaperSite>.Where( x => x.ParsedPaper == null)
returns nothing.
Oren hinted using contains, so I created the following:
from site in docs.PaperSites
where site.Contains("ParsedPaper") == false
select new { PaperSite = site }
This, however returns nothing.
In the database I have the following docs (and more):
PaperSites/34 { "Title": "Paper Site Zero (v0)", "Html": null},
PaperSites/97 { "Title": "Paper Site Three", "Html": "<html></html>", "ParsedPaper": null }
The following index:
from site in docs.PaperSites
where site.ParsedPaper == null
select new { PaperSite = site }
Returns the correct docs (ones where ParsedPaper exists, but is null)
Am I doing something wrong with the Contains? How do I debug these indexes?