Пример #1
0
 public BelongsTo(DbObjectSmartUpdate owner, string relationName)
     : base(owner, relationName)
 {
 }
Пример #2
0
 public HasAndBelongsToMany(DbObjectSmartUpdate owner, string orderByString, string foreignKeyName)
     : base(owner, foreignKeyName)
 {
     _order = OrderBy.Parse(orderByString);
 }
Пример #3
0
 public HasMany(DbObjectSmartUpdate owner, string orderByString, string foreignKeyName)
     : base(owner, foreignKeyName)
 {
     this._order = OrderBy.Parse(orderByString);
 }
Пример #4
0
 public HasOne(DbObjectSmartUpdate owner, string orderByString, string relationName)
     : base(owner, relationName)
 {
     this._order = OrderBy.Parse(orderByString);
 }
Пример #5
0
 public LazyLoadField(DbObjectSmartUpdate owner, string relationName)
     : base(owner, relationName)
 {
 }
Пример #6
0
 protected LazyLoadListBase(DbObjectSmartUpdate owner, string foreignKeyName)
 {
     this.Owner          = owner;
     this.ForeignKeyName = foreignKeyName;
 }