예제 #1
0
        public void ShouldWriteKey()
        {
            var mapping = new JoinMapping();

            mapping.Set(x => x.Key, Layer.Defaults, new KeyMapping());

            writer.VerifyXml(mapping)
            .Element("key").Exists();
        }
        public void ShouldWriteKey()
        {
            var mapping = new JoinMapping();

            mapping.Set(x => x.Key, Layer.Defaults, new KeyMapping());

            writer.VerifyXml(mapping)
                .Element("key").Exists();
        }
예제 #3
0
 public new void Inverse()
 {
     mapping.Set(x => x.Inverse, Layer.Conventions, nextBool);
     nextBool = true;
 }