/// <summary>Test if a key is contained by this database instance.</summary>
 /// <param name="key">Key to test</param>
 /// <returns>True if the key is not null and contained inside the globale subspace</returns>
 public bool Contains(Slice key)
 {
     return(key.HasValue && m_globalSpace.Contains(key));
 }