Get specific data from Entity

Is there a SIMPLE solution to get specific data from an entity in UiPath Studio like

SELECT NAME FROM ENTITY WHERE CITY="Berlin"

City | Name
Rom | Mario
Berlin | Mike

Result: Mike

“Get Entity Record by ID” or “Query Entity Records” are too complicated.
I’m looking for a one-liner …

Have a look at some options:

Query Entity Records + Confiugred Filter
OR
Data Service REST API
OR
Query Entity Records -out: myResult + LINQ
myResult.Where(Function (x) x.City.Equals(“XXX”)).toList

But the LINQ Oneliner will fetch all records and do filter afterwards
Any more close on source filtering is to prefer