Skip to content
Advertisement

How to write just one query to divide result from 2 query?

I have a query in Entity Framework Core like below:

I am dividing one currencyRate to another from 2 queries. There are 2 select queries. Only difference between queries is where condition. How to do this in one select query?

Advertisement

Answer

Pull both rows with

Put an explicit order by on like

Now you know the two rows you get back are in (currencyid, selectedcurrencyid) order so you can eg ToArray them and do array[1] / array[0]

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement