next.js 如何删除毛毛雨ORM与几个“在哪里”

3lxsmp7m  于 12个月前  发布在  其他
关注(0)|答案(1)|浏览(105)

我有一个功能:

export async function deleteFavoriteTrack({profileId, trackId}) {
   await db.delete(favoriteTracks).where(eq(favoriteTracks.profileId, profileId));
}

字符串
我只能写一个“eq”。我怎么能在prisma中写like:

where {
   profileId,
   trackId
}

1u4esq0p

1u4esq0p1#

你想删除两个相等的favoriteTrack?听起来AND就是你想要的!

await db.delete(favoriteTracks).where(
  and(
    eq(favoriteTracks.profileId, profileId),
    eq(favoriteTracks.trackId, trackId),
  )
)

字符串

相关问题