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


C# IOneToManyCollectionInstance.BatchSize方法代码示例

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


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

示例1: Apply

        public void Apply(IOneToManyCollectionInstance instance)
        {
            instance.Key.Column(instance.EntityType.Name + "Fk");

            instance.BatchSize(5);

            instance.Cascade.All();
        }
开发者ID:NonameProject,项目名称:Noname,代码行数:8,代码来源:HasManyConvention.cs

示例2: Apply

 public void Apply(IOneToManyCollectionInstance instance)
 {
     instance.LazyLoad();
     instance.BatchSize(5);
     instance.Access.CamelCaseField(CamelCasePrefix.Underscore);
     instance.Cascade.All();
     instance.Key.Column(Inflector.Underscore(instance.EntityType.Name) + "_id");
     instance.Key.ForeignKey(string.Format("fk_{0}_{1}",
         NamingHelper.GetPrefixedName(instance.EntityType),
         Inflector.Underscore(instance.ChildType.Name).ToLower()));
 }
开发者ID:brendanhay,项目名称:Shared,代码行数:11,代码来源:HasManyConvention.cs

示例3: Apply

 public void Apply(IOneToManyCollectionInstance instance)
 {
     instance.Access.ReadOnlyPropertyThroughCamelCaseField(CamelCasePrefix.Underscore);
     instance.Cascade.AllDeleteOrphan();            
     if (instance.OtherSide == null)
         instance.Not.Inverse();
     else
         instance.Inverse();
     instance.BatchSize(500);
     instance.AsSet();
     instance.Not.KeyNullable();
     instance.LazyLoad();
 }
开发者ID:neteagles,项目名称:Komrad.Template,代码行数:13,代码来源:PluralRelationsConvention.cs

示例4: Apply

 public void Apply(IOneToManyCollectionInstance instance)
 {
     instance.Access.ReadOnlyPropertyThroughCamelCaseField();
     instance.Cascade.AllDeleteOrphan();
     instance.AsSet();
     instance.BatchSize(25);
     if (instance.OtherSide == null)
     {
         instance.Not.Inverse();
     }
     else
     {
         instance.Inverse();
     }
     instance.Not.KeyNullable();
 }
开发者ID:Eskat0n,项目名称:Frameplate,代码行数:16,代码来源:HasManyConvention.cs

示例5: Apply

        public void Apply(IOneToManyCollectionInstance instance)
        {
            instance.ApplyFilter<DeletedFilter>();

            instance.Key.Column(instance.EntityType.Name + "Fk");

            //demonstrate business requirement - all has many relation should be fethced eagerly
            //to alleviate classic N+1 problem when iterating an "entity list property" and 
            //access properties on each iterator item
            //set batch 5 to eager fetch at most 5 entities when accessing a collection property.
            //its a good candidate for a general purpose query performance tuning
            //Note: the global class level adonet.batch_size can be set in nhibernate.config file
            instance.BatchSize(5);


            instance.Cascade.All();
        }
开发者ID:marufbd,项目名称:Zephyr.NET,代码行数:17,代码来源:HasManyConvention.cs

示例6: Apply

		public void Apply(IOneToManyCollectionInstance instance)
		{
			instance.BatchSize(100);
		}
开发者ID:seatwave,项目名称:Quarks,代码行数:4,代码来源:BatchSize100.cs


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