Skip to content
Advertisement

How to write Inline If Statement(SQL IIF) in EFCore Select?

I have the following Customer table:

Id  First    Last   LocationId
0   John     Doe    2
1   Mary     Smith  4

My use case requires column level permissions(predicated on a value in the Entity’s table).

How can I query like the following thru EFCore?

SELECT Id, First, IIF(LocationId in(2), Last, '') FROM Customer;

Whereby Last is returned only when LocationId == 2.

Advertisement

Answer

I believe you’re looking to use the .Select() method and ternary operator. So something like this:

context.Customer.Select(c => new { c.Id, c.First, Last = c.LocationId == 2 ? c.Last : "" });
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement