예제 #1
0
 public void Apply(IManyToManyCollectionInstance instance)
 {
     instance.Access.ReadOnlyPropertyThroughCamelCaseField();
     instance.Cascade.SaveUpdate();
     instance.AsSet();
     instance.BatchSize(25);
 }
 public void Apply(IManyToManyCollectionInstance instance)
 {
     instance.Access.ReadOnlyPropertyThroughCamelCaseField();
     instance.Cascade.SaveUpdate();
     instance.AsSet();
     instance.BatchSize(25);
 }
 public void Apply(IManyToManyCollectionInstance instance)
 {
     instance.Access.ReadOnlyPropertyThroughCamelCaseField(CamelCasePrefix.Underscore);
     instance.Cascade.SaveUpdate();
     instance.BatchSize(500);
     instance.AsSet();
     instance.LazyLoad();
 }
예제 #4
0
 public void Apply(IManyToManyCollectionInstance instance)
 {
     instance.AsSet();
 }
 public void Apply(IManyToManyCollectionInstance instance)
 {
     instance.AsSet();
     instance.Cascade.AllDeleteOrphan();
     instance.Generic();
 }