예제 #1
0
 private bool Equals(DbSession other)
 {
     return client.Equals(other.client) && string.Equals(pathName, other.pathName);
 }
예제 #2
0
 internal DbRootAddress(DbSession session, DataAddress address)
 {
     this.session = session;
     this.address = address;
 }
예제 #3
0
        protected override void OnSetUp()
        {
            base.OnSetUp();

            session = new DbSession(Client, PathName);
        }