public bool Equals(Db4oRepositoryId db4oRepositoryId) { if (db4oRepositoryId == null) { return false; } return _id == db4oRepositoryId._id; }
public int CompareTo(Db4oRepositoryId other) { if (other == null) { return -1; } return Comparer<long>.Default.Compare(Db4oId, other.Db4oId); }