Interesting question for everyone, do people use `...
# orm-help
m
Interesting question for everyone, do people use
ID
or
Id
? For example when adding a relation, do you do
postId
or
postID
? I personally find myself doing
ID
but I noticed that the VSCode extension defaults to
Id
j
Totally up to you
Depends on what is your main programming language - post_id, postId, postID, PostId, PostID and combinations are all possible 😄
As Prisma ORM is in Node, I would suggest going with
postId
as that is a quite common convention.
plus one +1 2