angular-odata-resources
Version:
Allows making fluent OData queries from angular resources
17 lines (15 loc) • 670 B
JavaScript
angular.module('ODataResources').
factory('$odata', ['$odataBinaryOperation','$odataProvider','$odataValue',
'$odataProperty','$odataMethodCall','$odataPredicate','$odataOrderByStatement','$odataExpandPredicate',
function(ODataBinaryOperation,ODataProvider,ODataValue,ODataProperty,ODataMethodCall,ODataPredicate,ODataOrderByStatement,ODataExpandPredicate) {
return {
Provider : ODataProvider,
BinaryOperation : ODataBinaryOperation,
Value : ODataValue,
Property : ODataProperty,
Func : ODataMethodCall,
Predicate : ODataPredicate,
OrderBy : ODataOrderByStatement,
ExpandPredicate : ODataExpandPredicate,
};
}]);