1
vote
3answers
78 views
How to ask a business user for cardinality information?
When collecting requirements from business users, I run into a point where I need to understand the cardinality between two concepts in the business user's domain.
This is usually something I want to …
0
votes
2answers
537 views
Why does the cardinality of an index in MySQL remain unchanged when I add a new index?
I have added a FULLTEXT index to one of my MySQL database tables as follows:
ALTER TABLE members ADD FULLTEXT(about,fname,lname,job_title);
The problem is that using phpmyadmin I can see the …
2
votes
6answers
2k views
Change cardinality of item in C# dictionary
I've got a dictionary, something like
Dictionary<Foo,String> fooDict
I step through everything in the dictionary, e.g.
foreach (Foo foo in fooDict.Keys)
MessageBox.show(fooDict[foo]);
…
1
vote
1answer
77 views
Alternate name for one-to-one vs one-to-many
Are there generally accepted computer science terms for one-to-one and one-to-many relationships? Something similar to the terms "aggregation", "generalization", and "association," but strictly …
