Skip to content
Advertisement

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

I have the following Customer table:

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?

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:

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