EtienneKepler wrote:
Hi Daelmo,
Thanks for your answer
I've try this, but it's very slow because the table is huge (10M records).
The single query executed on 10M rows is slow you mean? But isn't it that you're fetching all rows? Without measuring what's slow, it's guesswork... Joining 10M rows would indeed be slow (you do 2 joins). With a very wide table (200+ fields) it's even more slow as a lot of data is loaded and send from the DB to the client.
Specify all the fields is long and if the entity change in the model I have to think of updating my code (and if it's an other developer, he can forget).
I've try to make a CorrelatedOver on the same entity, using the primary key but I can't make it works. Something like this :
var q2 = qf.Order
.Select
(() => new ClientTradeItem
{
order = qf.Order.As("Ord")
.CorrelatedOver(OrderFields.Id.Source("Ord").Equal(OrderFields.Id))
.ToSingleResult<OrderEntity>(),
employeeName = EmployeeFields.LastName.ToValue<string>(),
customerName = CustomerFields.CompanyName.ToValue<string>()
}
)
.From
(
qf.Order
.InnerJoin(OrderEntity.Relations.EmployeeEntityUsingEmployeeId)
.InnerJoin(OrderEntity.Relations.CustomerEntityUsingCustomerId)
);
Maybe be we can get this function in a future version
You should use
order = qf.Order.**TargetAs**("Ord")
instead of 'As'. This is a bit confusing, but there are two alias specification statements: As and TargetAs. As is for aliasing a query or fragment in a Join, TargetAs is to specify the alias of a target inside a query. If there are no other elements appended to the element, e.g. in a join you have this situation, TargetAs and As are equal. In the case of your query, you append a where clause, so the 'As' will alias the whole query (as the Where is going to be part of qf.Order!) but you want to alias the target of Order inside the query.
When doing this, the engine will execute two queries: one for the outer query without the nested entity fetch and one for the nested entities and will merge them at runtime.