public void TestClassWithInt64Id()
        {
            _collection.RemoveAll();

            var doc = new ClassWithInt64Id { Id = 0, X = 1 };
            _collection.Insert(doc);

            doc = new ClassWithInt64Id { Id = 1, X = 1 };
            _collection.Insert(doc);
        }
Exemplo n.º 2
0
        public void TestClassWithInt64Id()
        {
            _collection.RemoveAll();

            var doc = new ClassWithInt64Id { Id = 0, X = 1 };
            _collection.Insert(doc);

            doc = new ClassWithInt64Id { Id = 1, X = 1 };
            _collection.Insert(doc);
        }