I am using LINQPad and I want to get the list of instance pipe names from the sys.dm_os_child_instances table. How is that expressed in LINQ-to-SQL?
This doesn't work:
from n in sys.dm_os_child_instances
select n
I don't think it matters, but I am using SQL Server Express 2008.
Also, yes, I know I can run raw SQL from LINQPad.