#typescript #schema #typeorm #mongoose-schema #mongodb-schema
Вопрос:
import { Document, ObjectId, Schema } from 'mongoose' import { IApprenticeProjectApplicationDocument } from './apprenticeprojectapplications' import { IProjectDocument } from './project' import { IUserDocument } from './user' import { IWorkspaceDocument } from './workspace' export interface ICompanyDocument extends Document { _id: string name: string address: string phone: string email: string onBoardingType: string contactUser: ObjectId | IUserDocument onBoardingUser: ObjectId | IUserDocument workSpace: ObjectId | IWorkspaceDocument postedProjects: ObjectId | IProjectDocument engagedProjects: ObjectId | IApprenticeProjectApplicationDocument preference: string } export const CompanySchema = new Schemalt;ICompanyDocumentgt;({ name: { type: String, }, address: { type: String, }, phone: { type: String, required: true }, email: { type: String, }, onBoardingType: { type: String, }, contactUser: { ref: 'User', type: Schema.Types.ObjectId }, onBoardingUser: { ref: 'User', type: Schema.Types.ObjectId }, workSpace: { ref: 'Workspace', type: Schema.Types.ObjectId }, postedProjects: { ref: 'Project', type: Schema.Types.ObjectId }, engagedProjects: { ref: 'ApprenticeProjectApplication', type: Schema.Types.ObjectId }, });
*Выше приведены коды, как мы можем преобразовать в TypeORM из У меня возникли проблемы с классами мангустов для набора текста. Введите код с помощью MongoDB. Как я могу использовать TypeORM с mongodb Как я могу использовать TypeORM с mongodb Как я могу использовать TypeORM с mongodb Как я могу использовать TypeORM с mongodb Как я могу использовать TypeORM с mongodb *