public async Task Exists(int id, bool expected)
        {
            IJsonRepository <Person, int> store = GetStore(_options);

            var idExists = await store.ExistsAsync(id);

            Assert.Equal(expected, idExists);
        }