我不得不用yarn add @prisma/client手动安装@prisma/client,然后运行npx prisma generate,它工作得很...
// Unsafely generate query textconst inputString = `'Sarah' UNION SELECT id, title FROM "Post"`; // SQL Injectionconst query = `SELECT id, name FROM "User" WHERE name = ${inputString}`;// Version for Typescriptconst stringsArray: any = [...[query]];// Version for Javascriptconst...
prisma generate --schema prisma/schema1.prisma prisma generate --schema prisma/schema2.prisma We're aware that this solution is not nice to use and are looking into solutions to improve this experience. But from what I could see in this issue, the mentioned use-cases are already possible to...