예제 #1
0
파일: Program.cs 프로젝트: abordt/Viking
 static void Main(string[] args)
 {
     db = new Annotation.Database.AnnotationDataContext("Data Source=MARCLABRETINADA\\SQLEXPRESS;Initial Catalog=Rabbit;Integrated Security=True");
     RepairDuplicateSynapses();
 }
예제 #2
0
 void IDisposable.Dispose()
 {
     if (_db != null)
     {
         _db.Dispose();
         _db = null;
     }
 }