コード例 #1
0
 protected override ConstraintWriterBase CreateConstraintWriter()
 {
     //check constraints don't seem to be included so ignore them all
     var constraintWriter = new ConstraintWriter(Table)
                            {
                                IncludeSchema = IncludeSchema,
                                CheckConstraintExcluder = check => true
                            };
     return constraintWriter;
 }
コード例 #2
0
        protected override ConstraintWriterBase CreateConstraintWriter()
        {
            //check constraints don't seem to be included so ignore them all
            var constraintWriter = new ConstraintWriter(Table)
            {
                IncludeSchema           = IncludeSchema,
                CheckConstraintExcluder = check => true
            };

            return(constraintWriter);
        }