I'm just starting with RavenDb. I would like to model train time table. Each train is described like this in real world.
Train no: 123
Reda 07:00
Gdynia 07:30
Sopot 08:00
Train no: 555
Reda 08:00
Gdynia 08:30
Sopot 09:00
Train no: 666
Reda 08:00
Wejherowo 09:00
I would like to query for trains that visit station A (not necessary start from that station) and then go to station B (don't have to finish it's run there) and not departing from station A earlier then 08:00. So for timetable above if I ask for train from Reda to Gdynia at 08:00 I get train no 555. Same If I ask for train from Reda to Sopot at 08:00. But I should not receive train 666.
I modeled it like this in code.
public class Train
{
public string Id { get; set; }
public string Number { get; set; }
public string Description { get; set; }
public ICollection<Station> Stations { get; set; }
public Train()
{
Stations = new List<Station>();
}
}
public class Station
{
public string Name { get; set; }
public string DepartFrom { get; set; }
}
My first attempt to query it was this:
using (var documentStore = new DocumentStore { Url = "http://localhost:8080" })
{
documentStore.Initialize();
var session = documentStore.OpenSession();
var found = from train in session.Query<Train>()
where train.Stations.Any(s => s.Name == from)
&& train.Stations.Any(s => s.Name == to)
select train;
}
But the && doesn't work with nested collections. I found out that only || works and that is because of how Lucene works. I have also found here that there is Intersect method that should allow me to create query I want but I cannot find that extension method anywhere (I'm using RavenDB Stable v1.0 build 992). What is the way to do it and do I have to create Index? How should it look?
Raven.Client.Linqto your using statements to get the.Intersect()extension method. I will research the rest of your question and post an answer shortly. – Matt Johnson Dec 29 '12 at 23:05