我想与sql server DB建立连接并以单件模式维护。这个功能是否内置于dot net中?或者我们必须为这种情况编写代码?
答案 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();
}
}