跳至主要内容

关系

关系是 Prisma 模式中两个模型之间的连接。例如,UserPost 之间存在一对多关系,因为一个用户可以拥有多个博文。

以下 Prisma 模式定义了 UserPost 模型之间的一对多关系。定义关系的字段已突出显示

model User {
id Int @id @default(autoincrement())
posts Post[]
}

model Post {
id Int @id @default(autoincrement())
author User @relation(fields: [authorId], references: [id])
authorId Int // relation scalar field (used in the `@relation` attribute above)
}

在 Prisma ORM 层面,User/Post 关系由以下部分组成

  • 两个关系字段authorposts。关系字段在 Prisma ORM 层面定义模型之间的连接,并且不存在于数据库中。这些字段用于生成 Prisma Client。
  • 标量 authorId 字段,它由 @relation 属性引用。此字段确实存在于数据库中 - 它是连接 PostUser 的外键。

在 Prisma ORM 层面,两个模型之间的连接始终由关系的两侧的关系字段表示。

数据库中的关系

关系型数据库

以下实体关系图定义了关系型数据库UserPost 表之间相同的一对多关系

A one-to-many relationship between a user and posts table.

在 SQL 中,您使用外键在两个表之间创建关系。外键存储在关系的一侧。我们的示例由以下部分组成

  • 名为 authorIdPost 表中的外键列。
  • 名为 idUser 表中的主键列。Post 表中的 authorId 列引用 User 表中的 id 列。

在 Prisma 模式中,外键/主键关系由 author 字段上的 @relation 属性表示

author     User        @relation(fields: [authorId], references: [id])

注意:Prisma 模式中的关系表示数据库中表之间存在的关系。如果数据库中不存在该关系,则它在 Prisma 模式中也不存在。

MongoDB

对于 MongoDB,Prisma ORM 目前使用规范化数据模型设计,这意味着文档以类似于关系型数据库的方式通过 ID 互相引用。

以下文档表示一个 User(在 User 集合中)

{ "_id": { "$oid": "60d5922d00581b8f0062e3a8" }, "name": "Ella" }

以下 Post 文档列表(在 Post 集合中)每个都有一个 authorId 字段,它们引用同一个用户

[
{
"_id": { "$oid": "60d5922e00581b8f0062e3a9" },
"title": "How to make sushi",
"authorId": { "$oid": "60d5922d00581b8f0062e3a8" }
},
{
"_id": { "$oid": "60d5922e00581b8f0062e3aa" },
"title": "How to re-install Windows",
"authorId": { "$oid": "60d5922d00581b8f0062e3a8" }
}
]

此数据结构表示一对多关系,因为多个 Post 文档引用同一个 User 文档。

ID 和关系标量字段上的 @db.ObjectId

如果模型的 ID 是 ObjectId(由 String 字段表示),则必须将 @db.ObjectId 添加到模型的 ID 以及关系另一侧的关系标量字段中

model User {
id String @id @default(auto()) @map("_id") @db.ObjectId
posts Post[]
}

model Post {
id String @id @default(auto()) @map("_id") @db.ObjectId
author User @relation(fields: [authorId], references: [id])
authorId String @db.ObjectId // relation scalar field (used in the `@relation` attribute above)
}

Prisma Client 中的关系

Prisma Client 是根据 Prisma 模式生成的。以下示例演示了在使用 Prisma Client 获取、创建和更新记录时关系如何体现。

创建记录和嵌套记录

以下查询创建一个 User 记录和两个连接的 Post 记录

const userAndPosts = await prisma.user.create({
data: {
posts: {
create: [
{ title: 'Prisma Day 2020' }, // Populates authorId with user's id
{ title: 'How to write a Prisma schema' }, // Populates authorId with user's id
],
},
},
})

在底层数据库中,此查询

  1. 创建一个 User,并使用自动生成的 id(例如,20
  2. 创建两个新的 Post 记录,并将这两个记录的 authorId 设置为 20

以下查询按 id 检索 User,并包含任何相关的 Post 记录

const getAuthor = await prisma.user.findUnique({
where: {
id: "20",
},
include: {
posts: true, // All posts where authorId == 20
},
});

在底层数据库中,此查询

  1. 检索 id20User 记录
  2. 检索 authorId20 的所有 Post 记录

将现有记录关联到另一个现有记录

以下查询将现有 Post 记录与现有 User 记录关联

const updateAuthor = await prisma.user.update({
where: {
id: 20,
},
data: {
posts: {
connect: {
id: 4,
},
},
},
})

在底层数据库中,此查询使用嵌套的 connect 查询id 为 4 的帖子链接到 id 为 20 的用户。查询通过以下步骤执行此操作

  • 查询首先查找 id20 的用户。
  • 然后,查询将 authorID 外键设置为 20。这将 id4 的帖子链接到 id20 的用户。

在此查询中,authorID 的当前值无关紧要。查询将 authorID 更改为 20,无论其当前值为多少。

关系类型

Prisma ORM 中有三种不同类型的(或基数)关系

以下 Prisma 模式包含每种类型的关系

  • 一对一:UserProfile
  • 一对多:UserPost
  • 多对多:PostCategory
model User {
id Int @id @default(autoincrement())
posts Post[]
profile Profile?
}

model Profile {
id Int @id @default(autoincrement())
user User @relation(fields: [userId], references: [id])
userId Int @unique // relation scalar field (used in the `@relation` attribute above)
}

model Post {
id Int @id @default(autoincrement())
author User @relation(fields: [authorId], references: [id])
authorId Int // relation scalar field (used in the `@relation` attribute above)
categories Category[]
}

model Category {
id Int @id @default(autoincrement())
posts Post[]
}
信息

此模式与示例数据模型相同,但已删除所有标量字段(除了必需的关系标量字段)以便您可以专注于关系字段

信息

此示例使用隐式多对多关系。除非您需要区分关系,否则这些关系不需要 @relation 属性。

请注意,关系型数据库和 MongoDB 之间的语法略有不同,尤其是在多对多关系方面。

对于关系型数据库,以下实体关系图表示与示例 Prisma 模式对应的数据库

The sample schema as an entity relationship diagram

对于 MongoDB,Prisma ORM 使用规范化数据模型设计,这意味着文档通过 ID 以类似于关系型数据库的方式相互引用。有关更多详细信息,请参阅MongoDB 部分

隐式和显式多对多关系

关系型数据库中的多对多关系可以通过两种方式建模

隐式多对多关系要求两个模型都具有单个@id。请注意以下事项

  • 您不能使用多字段 ID
  • 您不能使用@unique代替@id

要使用这两个功能中的任何一个,您必须设置显式多对多关系。

隐式多对多关系仍然在底层数据库中的关系表中体现。但是,Prisma ORM 管理此关系表。

如果您使用隐式多对多关系而不是显式多对多关系,它将使Prisma Client API更简单(例如,您在嵌套写入中少了一层嵌套)。

如果您没有使用 Prisma Migrate,而是从内省获取数据模型,您仍然可以通过遵循 Prisma ORM 的隐式 m:n 关系中关系表的约定来使用隐式多对多关系。

关系字段

关系字段是 Prisma 模型上的字段,具有标量类型。相反,它们的类型是另一个模型。

每个关系必须正好有两个关系字段,每个模型上一个。在一对一和一对多关系的情况下,需要一个额外的关系标量字段,它由@relation属性中的两个关系字段之一链接。此关系标量字段是底层数据库中外键的直接表示。

model User {
id Int @id @default(autoincrement())
email String @unique
role Role @default(USER)
posts Post[] // relation field (defined only at the Prisma ORM level)
}

model Post {
id Int @id @default(autoincrement())
title String
author User @relation(fields: [authorId], references: [id]) // relation field (uses the relation scalar field `authorId` below)
authorId Int // relation scalar field (used in the `@relation` attribute above)
}

postsauthor都是关系字段,因为它们的类型不是标量类型,而是其他模型。

另请注意,带注释的关系字段author需要在@relation属性中链接Post模型上的关系标量字段authorId。关系标量字段表示底层数据库中的外键。

另一个名为posts的关系字段纯粹是在 Prisma ORM 级别定义的,它不会在数据库中体现。

带注释的关系字段

需要一侧关系用@relation属性进行注释的关系称为带注释的关系字段。这包括

  • 一对一关系
  • 一对多关系
  • 仅限 MongoDB 的多对多关系

@relation属性注释的关系一侧表示在底层数据库中存储外键的一侧。“实际”表示外键的字段也需要在关系的那一侧,它称为关系标量字段,并在@relation属性中引用

author     User    @relation(fields: [authorId], references: [id])
authorId Int

当标量字段在@relation属性的fields中使用时,它变为关系标量字段。

关系标量字段

关系标量字段命名约定

由于关系标量字段始终属于关系字段,因此以下命名约定很常见

  • 关系字段:author
  • 关系标量字段:authorId(关系字段名称 + Id

@relation属性

@relation属性只能应用于关系字段,不能应用于标量字段

@relation属性是必需的,当

  • 您定义一对一或一对多关系时,它在关系的一侧是必需的(以及相应的关系标量字段)
  • 您需要消除关系的歧义(例如,当您在相同模型之间具有两个关系时)
  • 您定义自关系
  • 您定义MongoDB 的多对多关系
  • 您需要控制关系表在底层数据库中的表示方式(例如,为关系表使用特定名称)

注意:关系型数据库中的隐式多对多关系不需要@relation属性。

消除关系歧义

当您在相同两个模型之间定义两个关系时,您需要在@relation属性中添加name参数以消除它们的歧义。例如,为什么需要这样做,请考虑以下模型

// NOTE: This schema is intentionally incorrect. See below for a working solution.

model User {
id Int @id @default(autoincrement())
name String?
writtenPosts Post[]
pinnedPost Post?
}

model Post {
id Int @id @default(autoincrement())
title String?
author User @relation(fields: [authorId], references: [id])
authorId Int
pinnedBy User? @relation(fields: [pinnedById], references: [id])
pinnedById Int?
}

在这种情况下,关系是不明确的,有四种不同的解释方式

  • User.writtenPostsPost.author + Post.authorId
  • User.writtenPostsPost.pinnedBy + Post.pinnedById
  • User.pinnedPostPost.author + Post.authorId
  • User.pinnedPostPost.pinnedBy + Post.pinnedById

要消除这些关系的歧义,您需要使用@relation属性注释关系字段并提供name参数。您可以设置任何name(除了空字符串""),但它必须在关系的两侧相同

model User {
id Int @id @default(autoincrement())
name String?
writtenPosts Post[] @relation("WrittenPosts")
pinnedPost Post? @relation("PinnedPost")
}

model Post {
id Int @id @default(autoincrement())
title String?
author User @relation("WrittenPosts", fields: [authorId], references: [id])
authorId Int
pinnedBy User? @relation("PinnedPost", fields: [pinnedById], references: [id])
pinnedById Int? @unique
}