Tagged Questions
3
votes
6answers
4k 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]);
...
0
votes
1answer
39 views
SQL Databases, Entity Data Models and 1 to 1 entities
I am quite new to EDMs, having written quite a lot of ADO.Net stuff in the past. I have three tables:
**Product:**
Prod_ID - PK
**Product_MaxLoan**
Prod_ID - PK
**Product_MinLoan**
Prod_ID - PK
...
0
votes
1answer
26 views
Is there a straightforward way to determine the cardinality of a foreign key relationship using SMO?
Using SMO, I'm trying to determine the cardinality of a ForeignKey relationship. I could peruse each ForeignKeyColumn and look at each Column in the parent (and possibly also referenced) Tables, and ...