I usually do not use Sql Server Management Studio, I usually use Linqpad to run all my db queries. Anyhow.... My boss seems to think that stored procs are "a lot faster than linq".
So to test this, I want to run a simple stored proc and display the time it takes to run against an equal linq statement.
Any good ideas on how to achieve this? I am sure you guys (and gals) have run across this before.
Any ideas on how to compare that to the runtime of a linq statement?
EDIT: Let me clarify some things; First when my boss says "linq" I can only assume she is talking about Linq-to-Sql. Second, I am willing to try every way possible to test out this theory.