``` myDB.where(entry => entry.isAlphaBeta()) //...
# language-proposals
g
Copy code
myDB.where(entry => entry.isAlphaBeta()) //OK
myDB.where(entry => entry.someProp.Scalar > 35) //OK
myDB.where(entry => ApacheUtils.getLevensteinDistance(entry.someProp, "Hello Mongo!")) 
//probably not OK, since the body of 'getLevensteinDistance' wont be available to the AST. Although who knows, maybe the connector is smart enough to move ~jars~ DLLs around.