public void Add_ShouldUseIdentityForType()
        {
            //Arrange
            _context.RegisterIdentityStrategy(new IntegerIdentityStrategy <Post>(x => x.Id));
            var post = new Post {
                Id = 0
            };

            //Act
            _context.Add(post);
            _context.Commit();

            //Assert
            post.Id.Should().NotBe(0);
        }