Hello guys I\'m trying to find all the results that have a in them. I have tried a couple of ways but the problem is nothing works. It just returns an empty array
You can also use the database function for concatenation. In postgres for instance:
var data = await getRepository(User) .createQueryBuilder("user") .where("user.firstName like '%' || :name || '%'", {name: firstName }) .getMany();