Consider the 2 queries:
var test1 = store.OpenSession().Query<TestClass>().Where(x => x.Id == 1).ToList();
var test2 = store.OpenSession().Query<TestClass>().Where(x => x.Id >= 1).ToList();
test1 returns 1 item in the list. test2 returns 0 items.
For some reason I can't get it to return any items in the 2nd query. Is there any reason for this?