mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
ManyToMany joinTable Annotation issue with sqlite #5443
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @dtsw on GitHub (Mar 4, 2017).
If i use a joinTable Annotation with schema (e.g. rwuser.table_name), for a ManyToMany relationship, the dot is not replaced by __ when using sqlite.
@dtsw commented on GitHub (Mar 4, 2017):
Sorry i forgot to mention that the replacement is fine for schema creation, but not when using QueryBuilder.
@dtsw commented on GitHub (Mar 5, 2017):
As a Workaround i use the QuoteStrategy Interface.
@mmerian commented on GitHub (Nov 29, 2018):
Same here.
Thanks for the workaround, I'll give it a try.