Rob’s Sprint: Result Transformers
Join the DZone community and get the full member experience.
Join For FreeBy far the most confusing feature in RavenDB has been the index’s Transform Result. We introduced this feature to give the user the ability to do server side projections, including getting data from other documents.
Unfortunately, when we introduced this feature, we naturally added it to the index, and that cause a whole lot of confusion. In particular, people seemed to have a very hard time distinguishing between what get indexed and is searchable and the output of the index. To make matters worse, we also had major issues with how to determine the input of the TransformResults function. In short, the entire thing works, but from the point of view of an external user, that is really something that is very finicky and hard to get.
Instead, during Rob’s sprint, we have introduced a totally new concept. Stand-alone Result Transformers.
Here is what they look like:
public class OrdersStatsTransfromer : AbstractTransformerCreationTask<Order> { public OrdersStatsTransfromer() { TransformResults = orders => from order in orders select new { order.OrderedAt, order.Status, order.CustomerId, CustomerName = LoadDocument<Customer>(order.CustomerId).Name, LinesCount = order.Lines.Count }; } }
And yes, they are quite intentionally modeled to be very similar to the way you would define them up to now, but outside of the index.
Now, why is that important? Because now you can apply a Transform Results on the server side without being tied to a customer.
For example, let us see how we can make use of this new feature:
var customerOrders = session.Query<Order>() .Where(x => x.CustomerId == "customers/123") .TransformWith<OrdersStatsTransfromer, OrderViewModel>() .ToList();
This separation between the result transformer and the index means that we can apply it to things like automatic indexes as well.
In fact, we can apply it during load:
var ovm = session.Load<OrdersStatsTransfromer, OrderViewModel>("orders/1");
There are a whole bunch of other goodies in there, as well. We made sure that now you don’t have to worry about the inputs to the transform. We will automatically use the right values when you access them, based on whatever you stored the field in the index or if it is accessible on the document.
All in all, this is a very major step forward, and it makes it drastically easier to use Result Transformers in various ways.
Published at DZone with permission of Oren Eini, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
How To Use Git Cherry-Pick to Apply Selected Commits
-
How to Use an Anti-Corruption Layer Pattern for Improved Microservices Communication
-
A Complete Guide to Agile Software Development
-
Deploying Smart Contract on Ethereum Blockchain
Comments