python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to query for an entity that contains an asscociated entity in ArrayCollection field (many-to-many) in Doctrine?
Setup & Problem
There are two entities in my Symfony project (Entries and Persons) that are associated by a many-to-many relationship. An Entry (extended in Interview and LinkedEntry classes) can ...
TheodorusMaximus
Votes: 0
Answers: 0
DQL returns 0 expected result where MySQL has 2
I have a doctrine query (DQL) on my user repository which returns 0 results when I use a like :
$qb = $this->createQueryBuilder('q');
$qb->select('q.id, q.roles');
$qb->andWhere($qb->expr(...

Snoozer
Votes: 0
Answers: 1
Is there is any method to sove this error of MYSQL workbench when working on database?
Apply changes to exams Error 1064: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '
CONSTRAINT `reg`
FORE...
Touseef Khan
Votes: 0
Answers: 0
How to filter data with nested object in GraphQL
query {
comp(func: eq(dgraph.type,"ServiceTemplate")) {
topologytemplate{
nodetemplates {
name
namespace @filter (eq(url,"a_url")){
...
Dhananjay Gahiwade
Votes: 0
Answers: 1