我有以下模式
@Entity()
export class Question extends BaseEntity {
@PrimaryColumn()
messageId: string;
@Column()
authorId: string;
@Column()
question: string;
@Column("varchar", { array: true })
possibleAnswers: string[];
@Column()
isAnonymous: boolean;
@OneToMany(() => Answer, (answer) => answer.question, { eager: true })
answers: Answer[];
get formattedAnswers() {
return this.possibleAnswers
.map((answer, idx) => `${numericEmojis[idx]}: **${answer}**`)
.join("\n");
}
}
@Entity()
@Unique("uc_ids", ["userId", "questionMessageId"])
export class Answer extends BaseEntity {
@PrimaryGeneratedColumn()
id: number;
@Column()
userId: string;
@Column()
answerIndex: number;
@ManyToOne(() => Question, (question) => question.answers)
question: Question;
@Column({ readonly: true })
// @ts-expect-error
private readonly questionMessageId: string;
}
每当我尝试删除喜欢
const question = await Question.findOne(message.id);
await Question.delete(question);
我收到以下错误:
err: query: SELECT "Question"."message_id" AS "Question_message_id", "Question"."author_id" AS "Question_author_id", "Question"."question" AS "Question_question", "Question"."possible_answers" AS "Question_possible_answers", "Question"."is_anonymous" AS "Question_is_anonymous", "Question__answers"."id" AS "Question__answers_id", "Question__answers"."user_id" AS "Question__answers_user_id", "Question__answers"."answer_index" AS "Question__answers_answer_index", "Question__answers"."question_message_id" AS "Question__answers_question_message_id" FROM "question" "Question" LEFT JOIN "answer" "Question__answers" ON "Question__answers"."question_message_id"="Question"."message_id" WHERE "Question"."message_id" IN ($1) -- PARAMETERS: ["729340583583285289"]
err: (node:19515) UnhandledPromiseRejectionWarning: EntityColumnNotFound: No entity column "answers" was found.
最初,我尝试设置级联删除,以便在删除问题时也将删除答案,我得到了相同的错误,但是即使删除了级联删除,我也得到了相同的错误,如何解决此问题?我正在使用带有SnakeNamingStrategy的Postgres数据库