How can I determine if an assembly is running from a SQL Server CLR stored procedure or if it is running from a Windows app?

link|improve this question

70% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Check out SqlContext.IsAvailable

link|improve this answer
feedback

Following code should return different assembly information in both cases.

System.Reflection.Assembly.GetEntryAssembly();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.