public void WhenInBaseClassThenNotRecognizeExplicitRegisteredAsSetProperty()
 {
     var mapper = new ObjectRelationalMapper();
     mapper.Bag<A>(x => x.Array);
     var mi = typeof(B).GetProperty("Array");
     mapper.IsArray(mi).Should().Be.False();
 }
 public void NotRecognizeExplicitRegisteredAsBagProperty()
 {
     var mapper = new ObjectRelationalMapper();
     mapper.Bag<A>(x => x.List);
     var mi = typeof(A).GetProperty("List");
     mapper.IsList(mi).Should().Be.False();
 }
Пример #3
0
        public void WhenInBaseClassThenNotRecognizeExplicitRegisteredAsBagProperty()
        {
            var mapper = new ObjectRelationalMapper();

            mapper.Bag <A>(x => x.List);
            var mi = typeof(B).GetProperty("List");

            mapper.IsList(mi).Should().Be.False();
        }
Пример #4
0
        public void NotRecognizeExplicitRegisteredAsBagProperty()
        {
            var mapper = new ObjectRelationalMapper();

            mapper.Bag <A>(x => x.Array);
            var mi = typeof(A).GetProperty("Array");

            mapper.IsArray(mi).Should().Be.False();
        }
        public void WhenExplicitlyDeclaredAsBagThenDoesNotUseSet()
        {
            var mapper = new ObjectRelationalMapper();
            mapper.Patterns.Sets.Add(new BagCollectionPattern());
            mapper.Bag<A>(a=> a.Others);

            mapper.IsBag(ForClass<A>.Property(a=> a.Others)).Should().Be.True();
            mapper.IsSet(ForClass<A>.Property(a => a.NickNames)).Should().Be.True();
            mapper.IsSet(ForClass<A>.Property(a => a.Set)).Should().Be.True();
        }
        public void WhenExplicitlyDeclaredAsBagThenDoesNotUseSet()
        {
            var mapper = new ObjectRelationalMapper();

            mapper.Patterns.Sets.Add(new BagCollectionPattern());
            mapper.Bag <A>(a => a.Others);

            mapper.IsBag(ForClass <A> .Property(a => a.Others)).Should().Be.True();
            mapper.IsSet(ForClass <A> .Property(a => a.NickNames)).Should().Be.True();
            mapper.IsSet(ForClass <A> .Property(a => a.Set)).Should().Be.True();
        }
Пример #7
0
        public void UseSetForCollection()
        {
            // by default ConfORM will use <bag> for ICollection<T>.
            // If you want to use <set> you have to add a patterm to the ObjectRelationalMapper

            var orm = new ObjectRelationalMapper();

            // With the follow line I'm adding the pattern to discover where map a <set>
            orm.Patterns.Sets.Add(new UseSetWhenGenericCollectionPattern());

            // With the follow line I'm explicitly declaring that I want map the Contact.Aliases property as <bag>
            orm.Bag<Contact>(contact => contact.Aliases);

            var mapper = new Mapper(orm); // <== for this example the CoolPatternsAppliersHolder is not useful
            orm.TablePerClass<Contact>();

            // Show the mapping to the console
            var mapping = mapper.CompileMappingFor(new[] { typeof(Contact) });
            Console.Write(mapping.AsString());
        }
Пример #8
0
        public void UseSetForCollection()
        {
            // by default ConfORM will use <bag> for ICollection<T>.
            // If you want to use <set> you have to add a patterm to the ObjectRelationalMapper

            var orm = new ObjectRelationalMapper();

            // With the follow line I'm adding the pattern to discover where map a <set>
            orm.Patterns.Sets.Add(new UseSetWhenGenericCollectionPattern());

            // With the follow line I'm explicitly declaring that I want map the Contact.Aliases property as <bag>
            orm.Bag <Contact>(contact => contact.Aliases);

            var mapper = new Mapper(orm);             // <== for this example the CoolPatternsAppliersHolder is not useful

            orm.TablePerClass <Contact>();

            // Show the mapping to the console
            var mapping = mapper.CompileMappingFor(new[] { typeof(Contact) });

            Console.Write(mapping.AsString());
        }