Merge pull request #3136 from RHAD1969/master

Added a FilterQueryOpSymbol and an overload to EntityQuery.where
This commit is contained in:
Masahiro Wakame
2014-11-14 10:46:05 +09:00

2
breeze/breeze.d.ts vendored
View File

@@ -526,6 +526,7 @@ declare module breeze {
where(property: string, operator: string, value: any): EntityQuery;
where(property: string, operator: FilterQueryOpSymbol, value: any): EntityQuery;
where(predicate: FilterQueryOpSymbol): EntityQuery;
where(property: string, filterop: FilterQueryOpSymbol, property2: string, filterop2: FilterQueryOpSymbol,value:any): EntityQuery;
withParameters(params: Object): EntityQuery;
}
@@ -618,6 +619,7 @@ declare module breeze {
LessThanOrEqual: FilterQueryOpSymbol;
NotEquals: FilterQueryOpSymbol;
StartsWith: FilterQueryOpSymbol;
Any: FilterQueryOpSymbol;
}
var FilterQueryOp: FilterQueryOp;