当前位置: 首页>>代码示例>>C#>>正文


C# ObjectRelationalMapper.Bag方法代码示例

本文整理汇总了C#中ObjectRelationalMapper.Bag方法的典型用法代码示例。如果您正苦于以下问题:C# ObjectRelationalMapper.Bag方法的具体用法?C# ObjectRelationalMapper.Bag怎么用?C# ObjectRelationalMapper.Bag使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ObjectRelationalMapper的用法示例。


在下文中一共展示了ObjectRelationalMapper.Bag方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: WhenInBaseClassThenNotRecognizeExplicitRegisteredAsSetProperty

 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();
 }
开发者ID:alvarezdaniel,项目名称:conformando-nhibernate,代码行数:7,代码来源:ArrayProperties.cs

示例2: NotRecognizeExplicitRegisteredAsBagProperty

 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();
 }
开发者ID:alvarezdaniel,项目名称:conformando-nhibernate,代码行数:7,代码来源:ListProperties.cs

示例3: WhenExplicitlyDeclaredAsBagThenDoesNotUseSet

        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();
        }
开发者ID:alvarezdaniel,项目名称:conformando-nhibernate,代码行数:10,代码来源:SetProperties.cs

示例4: UseSetForCollection

        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());
        }
开发者ID:alvarezdaniel,项目名称:conformando-nhibernate,代码行数:20,代码来源:Demo.cs


注:本文中的ObjectRelationalMapper.Bag方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。