I want to retrieve all documents of some type by the following query:
var customers = documentSession.Query<Customer>()
but in this case I get only 1 result (while there are 78 of them). If I add some filtering condition which is always true, I get all 78 documents:
var customers = documentSession.Query<Customer>().Where(c => c.Id != null).ToList();
I guess it is a bug.
Update. RavenDb Build 531
Update 2
Daniel and Oren, sorry for the delay.
I have prepared a sample application. You can download it here: http://www.2shared.com/file/AGIAR5UA/RavenDbSampleAppication.html
There is test NUnit project which references SkazhiKazinoNet.Data.Model.dll where model is defined. I just added package with last RavenDb and imported data from dump4.raven (you can find it in packages/Raven/tools) by Raven.Smuggler.