Example #1
0
 public StateStorage(SchemaConnection connection)
 {
     if (connection == null)
     {
         throw new ArgumentNullException("connection");
     }
     this.connection    = connection;
     this.identComparer = new IdentComparer(connection.DbDriver.DbStringComparer);
     this.subComparer   = new SubComparer(identComparer);
     Refresh();
 }
Example #2
0
 internal SubComparer(IdentComparer identComparer)
 {
     this.identComparer = identComparer;
 }