2
votes
3answers
60 views
Simple UML behaviours baffle me!
Hello!
Very new to UML and system design.
We're at the stage of doing a class diagram in the design phase and are struggling to figure out how to implement a requirement. Here's …
0
votes
1answer
46 views
iPhone Core Data Recursive Relationships
I'm having some trouble with a recursive relationship in core data. I've got a managed object called a "SearchCategory", and that category can have "Categories" and it can also ha …
0
votes
1answer
56 views
iPhone coredata fetch request, basics around relationships and sections
Hi all,
I've got what is hopefully a simple question - I've got two entities - List and ListItem - and there's a one-to-many relationship set up between them, all good.
My probl …
0
votes
1answer
17 views
LINQ2SQL: Update an entity field that has a reference to another entity
I have the following situation in LINQ: I have an object (a blog "Post") that has a "Status" field which can take on different values, and there's a table listing all these values …
0
votes
1answer
58 views
PHP Doctrine - YAML syntax help. Default value for many to many relationship?
Hi, I have the following YAML schema for organising users in Doctrine:
Person:
tableName: people
columns:
id:
type: integer
primary: true
autoincrement: …
1
vote
1answer
26 views
Querying Parent-child Relationships Efficiently
Assuming you have the following database table:
create table Names (
Id INT IDENTITY NOT NULL,
Name NVARCHAR(100) not null,
ParentNameId INT null,
primary key (Id)
…
1
vote
2answers
59 views
CoreDate Deletion rules and many-to-many relationships
Say you have departments and employees and each department has several employees, but each employee can also be part of several departments.
So there is a many-to-many relationshi …
0
votes
1answer
55 views
django recursive relationships
My DjangoApp is using categories to generate a navigation and to put stuff in those categories.
There are two types of categories:
ParentCategories (top categories)
ChildCategor …
0
votes
2answers
64 views
Working with models which don’t have a single foreign key in CakePHP
I'm working on an application which has data imported from a foreign (and wholly unchangeable) source. I'll simplify some of the tables to explain the problem. Below are the tables …
0
votes
1answer
36 views
Rails Relationships based on multiple attributes
Is it possible to have a activerecord has_many relationship that is based on multiple columns?
A useless but illustrative example:
Users
integer:role (1,2,3,4)
string:gende …
1
vote
1answer
137 views
Zend Framework relationships - defining column names in findManyToManyRowset()?
Hi,
I'm working on an application developed using Zend Framework. I have defined relationships in models, and can use them happily, e.g:
$rowset = $row->findManyToManyRowset( …
0
votes
2answers
280 views
CakePHP select default value in SELECT input
Using CakePHP:
I have a many-to-one relationship, let's pretend it's many Leafs to Trees. Of course, I baked a form to add a Leaf to a Tree, and you can specify which Tree it is …
0
votes
1answer
34 views
Can a single model “belong_to” more than one parent model?
Just as on StackOverflow, in my app a User can write Questions and can also provide Answers:
class User < ActiveRecord::Base
has_many :questions
has_many :answers
end
clas …
0
votes
1answer
38 views
Why find(:last) fail in my unit tests?
I have a one-to many relationship in Rails:
class User < ActiveRecord::Base
has_many :activities, :order => "added_at DESC"
class Activity < ActiveRecord::Base
belo …
0
votes
1answer
50 views
ActiveRecord: creating a one-to-many relationship back to itself
Hi,
I'm building a social networking website. I have a table of Users. Each user can have a number of other users as friends, so I have a second table Friends:
user_id
friend_id
…
