|
@@ -49,7 +49,7 @@ namespace InABox.DynamicGrid
|
|
|
{
|
|
|
var expr = CoreUtils.CreateLambdaExpression<TManyToMany>(prop.Name + ".ID");
|
|
|
criteria.Add(new Filter<TManyToMany>(expr).IsEqualTo(ID));
|
|
|
- Clients.Client.Query(criteria.Combine(), columns, sort, null, action);
|
|
|
+ Client.Query(criteria.Combine(), columns, sort, null, action);
|
|
|
}
|
|
|
|
|
|
public override TManyToMany LoadItem(CoreRow row)
|
|
@@ -66,12 +66,12 @@ namespace InABox.DynamicGrid
|
|
|
{
|
|
|
var items = LoadItems(rows);
|
|
|
foreach (var item in items)
|
|
|
- Clients.Client.Delete(item, "");
|
|
|
+ Client.Delete(item, "");
|
|
|
}
|
|
|
|
|
|
public override void SaveItem(TManyToMany item)
|
|
|
{
|
|
|
- Clients.Client.Save(item, "");
|
|
|
+ Client.Save(item, "");
|
|
|
}
|
|
|
}
|
|
|
}
|