Is it possible to use linq in SQL Management Studio or use it in embedded sql?

I would like to offload the work of creating the sql statement from the application to the database. Is it possible?

+3
source share
2 answers

You cannot, but if you want to translate LINQ queries, you can use this tool: http://www.linqpad.net/ It can generate SQL so if you invested a lot in LINQ, you can use it to create stored procs or queries for SQL.

+4
source

LINQ is part of C # (and other .net languages). This has nothing to do with SQL.

-1
source

Source: https://habr.com/ru/post/1728234/


All Articles