mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-29 19:56:43 +08:00
Merge pull request #47 from xland/patch-2
Add a method to enhancing user experience
This commit is contained in:
commit
d162c44477
@ -636,6 +636,11 @@ namespace SqlSugar
|
||||
if (this.Context.Ado != null)
|
||||
this.Context.Ado.Close();
|
||||
}
|
||||
public virtual void Open()
|
||||
{
|
||||
if (this.Context.Ado != null)
|
||||
this.Context.Ado.Open();
|
||||
}
|
||||
public virtual void Dispose()
|
||||
{
|
||||
if (this.Context.Ado != null)
|
||||
|
Loading…
Reference in New Issue
Block a user