Coder Social home page Coder Social logo

Comments (6)

cedric-g avatar cedric-g commented on August 18, 2024

Hi, what do you get if you dump $field and $fieldAlias variables just after the line $fieldAlias = substr($field, strpos($field, '.') + 1); ?

from lexikformfilterbundle.

fuser82 avatar fuser82 commented on August 18, 2024

Hi, I get this when I do var_dump
$field => string 'e._fieldName' (length=12)
$fieldAlias => string '_fieldName' (length=10)

in file Lexik\Bundle\FormFilterBundle\Filter\ORM\Filters\EntityFilter

from lexikformfilterbundle.

cedric-g avatar cedric-g commented on August 18, 2024

Ok, I just made a quick test and I get the same error, it seems that Donctrine don't like parameters named like :_xxxxx, if I remove the _ to get a parameter named like :xxxxx it works. Maybe should add something like trim($fieldAlias, '_') before set the parameter.

from lexikformfilterbundle.

mrcmorales avatar mrcmorales commented on August 18, 2024

Hi,

This is resolved?

I'm filtering with filter_entity and obtain this error:

[Semantical Error] line 0, col 55 near 'jobCategories': Error: Invalid PathExpression. StateFieldPathExpression or SingleValuedAssociationField expected.

This is the query:

"SELECT e FROM CliCons\CoreBundle\Entity\User e WHERE e.jobCategories = :p_jobCategories"

Thanks

Regards

from lexikformfilterbundle.

mrcmorales avatar mrcmorales commented on August 18, 2024

Ping @cedric-g

Thanks :)

from lexikformfilterbundle.

cedric-g avatar cedric-g commented on August 18, 2024

Hi, the error you get is not the same as fuser82 got. In your case Doctrine notice you that jobCategories is not a field in or a foreign key in the description of User table. I suppose jobCategories is a collection, soyou have to add a join to the target entity, then add your condition from the joined entity, so if I am right your query should be something like:

SELECT e FROM CliCons\CoreBundle\Entity\User e LEFT JOIN e.jobCategories jc WHERE jc.id = :jobCategoriesIds

from lexikformfilterbundle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.