Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
when compare among if and set analysis which performance is good in ui level?
Set Analysis will almost always be faster than if().
-Rob
set analysis
A few things to keep in mind:
- As a rule, set analysis is faster.
- Expressions with set analysis are not "cache-able", that means they are recalculated every time.
- In some cases "if" cannot be replaced with set analysis.