Searching for a lease in time & space
For some reason, there are a lot of real estate / rental people using RavenDB. I can tell you that I did not see that coming. However, that does bring us some interesting decisions.
In particular, at one client, we had the need to search for a lease. Searching for a lease can be done on one of many interesting properties. For example, the unit number, or internal code, or by the leaser name.
And here we got an interesting bug report.
Jane Smith leased an apartment from us at Dec 2012. At Feb 2013, she got married and changed her name to Jane Smith-Smyth. We need to allow searches on both names to find the appropriate lease.
Now, remember, you can’t go and change the lease document. That is a legal document that is frozen. Any change to that would invalidate it. (To be rather more accurate, you can modify the document, but there are certain fields that are frozen after the lease is signed.)
Luckily, this was really easy to do, using RavenDB’s referenced document feature:
1: from lease in docs.Leases2: select new3: {
4: Leasers = lease.Leasers.Select(x=>x.Name)
5: .Union(lease.Leasers.Select(x=>LoadDocument(x.Id).Name))
6: .Distinct()
7: }
And now we can support changes in the names, while maintaining the sanctity of the frozen fields.
Sadly, this is still not enough. And we actually need to keep track of all of the names that the leaser had during the leasing period.
Jane Smith-Smyth decided that it is a stupid name and changed her name to Jane Smite.
Now we need to support multiple names per leaser, while at the same time we have the current name for the lease. It looks like this:
1: from lease in docs.Leases2: select new3: {
4: Leasers = lease.Leasers.Select(x=>x.Name)
5: .Union(lease.Leasers.SelectMany(x=>LoadDocument(x.Id).Names))
6: .Distinct()
7: }
I highlighted the required changes .
Comments
.Distinct() can be removed, right? .Union() already does it. Even nicer then.
Grastveit, Correct, I assumed that this is like Concat
Comment preview