...次のようなクエリを実行しようとすると:
Session().query(MyMappedClass).update({MyMappedClass.time:func.now()})
私は得る:
InvalidRequestError: Could not evaluate current criteria in Python. Specify 'fetch' or False for the synchronize_session parameter.
しかし、もしそうなら:
Session().query(MyMappedClass).update({MyMappedClass.time:'now()'})
...できます。理由を知っている人はいますか?