如果我使用 Linq,是否必须手动关闭 SQL 连接?

Do I have to close the SQL Connection manually if I use Linq?(如果我使用 Linq,是否必须手动关闭 SQL 连接?)
本文介绍了如果我使用 Linq,是否必须手动关闭 SQL 连接?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

传统上,当我们使用SQL字符串做一些工作时,我们必须在关闭页面之前关闭sql连接,我想知道如果我使用Linq进行数据操作是否还需要手动关闭连接?

Traditionally, when we use SQL string to done some work, we have to close the sql connection before the page being closed, I was wondering if I use Linq to do the data operations do I still need to close the connection manually?

推荐答案

这与 这个问题.

LINQ to SQL 将在需要时打开和关闭连接 - 您实际上不必处理 DataContext.但是,有时您可以欺骗"上下文以在您不应该打开连接时保持打开状态 - 我个人喜欢将其作为理所当然的处理.有关 LINQ to SQL 团队的 Matt Warren 的更多详细信息,请参阅我对另一个问题的回答.

LINQ to SQL will open and close connections when it needs to - you don't really have to dispose of the DataContext. However, there are times when you can "trick" the context into leaving a connection open when you shouldn't - I personally like to dispose of it as a matter of course. See my answer to the other question for a bit more detail from Matt Warren of the LINQ to SQL team.

不过,我不了解实体框架.

I don't know about the Entity Framework, however.

这篇关于如果我使用 Linq,是否必须手动关闭 SQL 连接?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
How can I generate an entity–relationship (ER) diagram of a database using Microsoft SQL Server Management Studio?(如何使用Microsoft SQL Server Management Studio生成数据库的实体关系(ER)图?)