Is it possible to use linq in SQL Management Studio or use it in inline sql?
I would like to offload the work of generating an sql statement from the开发者_运维知识库 application to the database. Is this possible?
You cannot, but if you want to translate LINQ queries you can use this tool: http://www.linqpad.net/ It can generate the SQL so if you invested a lot in LINQ, you can use this to create stored procs or queries for SQL.
LINQ is part of C# (and other .net languages). It has nothing to do with SQL.
精彩评论