请清楚单身模式的概念

时间:2010-09-02 09:45:48

标签: .net singleton

我想与sql server DB建立连接并以单件模式维护。这个功能是否内置于dot net中?或者我们必须为这种情况编写代码?

3 个答案:

答案 0 :(得分:1)

使用sqlHelper类将为您提供与数据库连接相关的工作

答案 1 :(得分:1)

请参阅here

答案 2 :(得分:1)

延迟加载的单例示例

public sealed class Singleton

{     辛格尔顿()     {     }

public static Singleton Instance
{
    get
    {
        return Nested.instance;
    }
}

class Nested
{
    // Explicit static constructor to tell C# compiler
    // not to mark type as beforefieldinit
    static Nested()
    {
    }

    internal static readonly Singleton instance = new Singleton();
}

}