Query like ``` session.Query.All<TestEntity>() .Where(x => x.Id.In(fieldDicationary.Keys)) .Set(x=>x.StringField, x=>"prefix" + x.Id.ToString()) .Update(); ``` ends up with incorrect query which cause SQL error.