We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a36d9e commit 18d4b9eCopy full SHA for 18d4b9e
docs/usage/querying.rst
@@ -59,7 +59,7 @@ Print unique identification (Id) of all employees with name John Smith:
59
from pyodata.v2.service import GetEntitySetFilter as esf
60
61
smith_employees_request = northwind.entity_sets.Employees.get_entities()
62
- smith_employees_request = smith_employees_request.filter(sef.and_(
+ smith_employees_request = smith_employees_request.filter(esf.and_(
63
smith_employees_request.FirstName == 'Jonh',
64
smith_employees_request.LastName == 'Smith'))
65
for smith in smith_employees_request.execute():
0 commit comments