I am having a orchestration which will call a static method in a static class. I just discovered that if you need to run a Linq query a lot of times it is a good idea to make it into a compiled query. And my orchestration will be spawned a lot of times.
But im not sure I will win anything by making it into a compiled query.
Will each orchestration has to compile the query or will it be shared?