本文整理汇总了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();
}
示例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()));
}
示例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();
}
示例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();
}
示例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();
}
示例6: Apply
public void Apply(IOneToManyCollectionInstance instance)
{
instance.BatchSize(100);
}