public Sys10Context() : base(GetConnectionString(ContextName))
 {
     StoredProcedures      = new StoredProcedures(this);
     ScalarValuedFunctions = new ScalarValuedFunctions(this);
     TableValuedFunctions  = new TableValuedFunctions(this);
 }
Exemple #2
0
 public ComiferContextLog(string contextName) : base(GetConnectionString(contextName))
 {
     StoredProcedures      = new StoredProcedures(this);
     ScalarValuedFunctions = new ScalarValuedFunctions(this);
     TableValuedFunctions  = new TableValuedFunctions(this);
 }
 public Sys10Context(DbConnection connection) : base(connection, true)
 {
     StoredProcedures      = new StoredProcedures(this);
     ScalarValuedFunctions = new ScalarValuedFunctions(this);
     TableValuedFunctions  = new TableValuedFunctions(this);
 }