EntityManager.manyToManyUnassign

Deletes the association from each other of two entities with a many-to-many relation

struct EntityManager(DatabaseDriver)
@safe
void
manyToManyUnassign
(
TEntity1
TEntity2
string joinTableName_ = joinTableName!(TEntity1, TEntity2)
)
(
TEntity1 e1
,
TEntity2 e2
)
if (
isEntityType!TEntity1 &&
isEntityType!TEntity2
)
if (
isORMCompatible!DatabaseDriver
)

Meta