Hello,
quick qestion today... what is more efficient and is there a big diffrence in performance between those to SQL Server operations.
select four objects from database in four separate select queries (just fetching them by id) in one single transaction, or
select it in a single query (ofcourse more complicated, with joins).
I'll tell you that I'd rather like the first solution, but I need to know if it is much less efficient (if it is less eficient at all).
Thanks for any opinion..