是否可以在 SQL Management Studio 中使用 linq 或在内联 sql 中使用它?
我想将生成 sql 语句的工作从应用程序转移到数据库。这可能吗?
I would like to offload the work of generating an sql statement from the application to the database. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不能,但如果您想翻译 LINQ 查询,您可以使用此工具: http://www.linqpad.net/< /a> 它可以生成 SQL,因此如果您在 LINQ 上投入了大量资金,则可以使用它来创建 SQL 的存储过程或查询。
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 是 C#(和其他 .net 语言)的一部分。与SQL无关。
LINQ is part of C# (and other .net languages). It has nothing to do with SQL.