You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
-
1Sounds like you're simply telling Hibernate to set up a one-to-many relationship backwards from what you intended.candied_orange– candied_orange2021-08-05 19:58:32 +00:00Commented Aug 5, 2021 at 19:58
-
Sorry, I'm not following your description here. "a Wallet can have many WalletPlatform and WalletStorage that it owns." Are you saying a single wallet can be associated with more than one WalletPlatform and WalletStorage? Is there any relationship between WalletStorage and WalletPlatform?JimmyJames– JimmyJames2021-08-05 20:34:56 +00:00Commented Aug 5, 2021 at 20:34
-
Bridge tables are often used to deal with many-to-many situations. You need to understand what your data base vendor supports for many-to-many and bridge tables. You need to understand whether whatever will be making the queries to extract information from your data base has the capability of dealing with bridge tables. Some tools have a relatively elegant switch, some require hand-coding of the SQL.C'est Moi– C'est Moi2021-08-05 21:17:11 +00:00Commented Aug 5, 2021 at 21:17
-
"I have read through online that many-to-many should be avoided as much as possible and it makes sense." They should not be avoided when that is the natural relationship!Erik Eidt– Erik Eidt2021-08-06 14:59:59 +00:00Commented Aug 6, 2021 at 14:59
Add a comment
|
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
-
create code fences with backticks ` or tildes ~
```
like so
``` -
add language identifier to highlight code
```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible)
<https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you