SQLHelper Class

后端 未结 3 1292
离开以前
离开以前 2021-01-13 23:33

Is there a recent version of the SQLHelper class out there. I\'ve been using one for a few years now and was wondering if there is a new version out there for .NET Framework

相关标签:
3条回答
  • 2021-01-13 23:59

    According to this...

    SqlHelper was actually replaced with an abstract class, called Database, and two concrete classes that derive from it: SqlDatabase and OracleDatabase.

    0 讨论(0)
  • 2021-01-14 00:05

    To follow up on this question since it hasen't been answered:

    Is there a new version to the 2004 sqlHelper class which can be retrived from:

    http://www.microsoft.com/downloads/details.aspx?familyid=f63d1f0a-9877-4a7b-88ec-0426b48df275&displaylang=en

    I know there are Application Blocks part of Enterprise Library 4.1 Oct 2008, but I can't find the sqlHelper class in it.

    0 讨论(0)
  • 2021-01-14 00:11

    I have an extend version of this library It's available on GitHub: and NuGet. It was based on the source code of the SqlHelper.

    Extra features that i think that aren't in the original

    • Async/await
    • MySql Support
    • Generics
    0 讨论(0)
提交回复
热议问题