단일 모드 적용 - Context 컨텍스트 클래스 추가

3073 단어
/// /// /// public class ContextFactory { private static TestOAEntities context; public static DbContext GetContext() { if (context == null) { context = new TestOAEntities(); } return context; } } /// /// static /// public class ContextFactory2 { public static DbContext Context { get; set; } static ContextFactory2() { Context = new TestOAEntities(); } }

좋은 웹페이지 즐겨찾기