1
vote
1answer
65 views
dropdown select in cakePHP
Hello,
I am using CakePHP 1.2. I have a person model that hasMany 'Document'. When I edit a document, the select box for the owning person appears (echo $form->input('person' …
0
votes
1answer
22 views
Entity Framework - Association Set
I am converting a project from another ORM to Entity Framework. I have a table where all 3 fields are foreign keys. So this table has been automatically mapped as an Association …
1
vote
2answers
386 views
Hibernate unidirectional one to many association - why is a join table better?
In this document (scroll down to the Unidirectional section):
http://docs.jboss.org/hibernate/stable/annotations/reference/en/html_single/#entity-mapping-association-collections
…
0
votes
1answer
365 views
rails validating multiple child models in a complex form
Hi,
I am using multiple child models in a complex form (a la http://railsforum.com/viewtopic.php?id=28447). The form works great, but I need to validate a property of the set of c …
2
votes
2answers
193 views
iPhone file extension app association
Hello everybody!
On my iPhone, I'm running an app called Caissa Chess. After registering the app with the manufacturer (this is optional) I received an email, containing a chess p …
2
votes
4answers
63 views
VS .NET class designer
Assume that class Being has a property of type Habitat. Both classes are implemented in their own .cs files. When I drag and drop the two classes from the class designer onto a new …
1
vote
2answers
57 views
LinqToSql and Views don’t have foriegn keys/associations?
Hi folks,
I've got some tables in my Linq2Sql designer (in Visual Studio 2008). Works great.
Now, I just tried dropping in a View onto the designer. It dropped on there ok, but …
1
vote
2answers
776 views
Entity Framework - Association From Derived Entities
Hi,
I'm using the TPH (Table per Hierarchy) technique to map a set of entities.
DB Schema:
UserGroupLabelSpreads table having a "UserId", "GroupId" and "LabelId" nullable fields w …
1
vote
1answer
384 views
hibernate order by association
I'm using Hibernate 3.2, and using criteria to build a query. I'd like to add and "order by" for a many-to-one association, but I don't see how that can be done.
The Hibernate que …
0
votes
1answer
50 views
Removing an association from an entity
Hi,
I have 2 entities: User and Company, with a FK from the User to the Company.
I'm trying to remove the association and leave the user entity with a scalar property "CompanyId", …
12
votes
0answers
963 views
How can one link/merge/combine/associate two Stack Overflow accounts/users? (Anonymous/unregistered/cookie or OpenID/registered) [closed]
I accidentally posted a question without being logged in with OpenID. Is there a way to associate that question with my account?
Return to FAQ Index
a.k.a. How can you link an …
0
votes
1answer
415 views
C# : how to register / associate my app with a file type for XP *and* Vista ?
What's the simplest way to associate my application with a file-extension that works for both Vista and previous versions of Windows ?
Does anyone have an example ?
0
votes
3answers
497 views
How can I define a polymorphic relation between models in Django?
I am working on a Django application which contains an Offer model. An Offer instance contains the pricing conditions and points to a product definition. The product model is act …
0
votes
2answers
514 views
Return related objects in select linq to sql
I have 2 tables Account and Address which has 1:1 relationsip; account has addressid in it. I have created the association in the dbml file. Now I want to write a query to select t …
0
votes
5answers
2k views
UML class diagram association - how, when and why?
I usually get so confused with UML and this situation is no different.
Let's say I have an interface IAnimal, class Food and Cat:
interface IAnimal {
void Feed(Food food);
}
…
