Tagged Questions
0
votes
0answers
102 views
Strategies for populating database entities from a Json web service/API
The Situation
I am working on an iPhone application that interfaces with a php web service to connect to a mySQL database. This database represents a menu hierarchy where a MenuCategory entity has a ...
1
vote
1answer
80 views
Modeling Complex Relationships in Django
Okay, here's a challenge, Djangonistas!
My let's say my project has 3 types of data.
Project
Audio
Video
Projects can have references to an unlimited number of Video and Audio objects, as well as ...
2
votes
1answer
87 views
how to model a singleton object to table through hibernate?
I have a global config object in my project and there can ever be 0 or 1 instance of this class that i want to persist in db. What is the best way to do this ? One trick i know here is to have a ...
0
votes
1answer
266 views
Sequelize.js join table twice using hasMany
I am using Sequelize.js to do a double join on the same table. I have a set of Team objects and a set of Game objects. A team hasMany Games, so it would have foreign keys in the game table, but there ...
0
votes
1answer
29 views
.NET and/or Web Service-accessible Object Manager with Security
I currently use Microsoft CRM for a lot of development but am questioning if there is a better toolset for certain applications. One of the strengths with MS CRM is being able to create objects, ...
2
votes
2answers
71 views
How to model relationships changing one to one relationships with Hibernate
I have 2 entities plug and socket which have one to one mapping.
Now, plug has a foreign key relationship to the socket it is plugged in to.
Hibernate generates unique constraint on the foreign key ...
1
vote
1answer
180 views
Override behaviors in Entity Framework
We have a data model that has some requirements. I would like to find a way to make these requirements be as transparent as possible while using EF.
First, the model must support soft-delete. I've ...
2
votes
1answer
18 views
Modeling Users, Things, and Things voted or scored by users?
I'm new to entity framework and data modeling.
Problem:
I have user objects and thing objects, my confusion beings once a user "votes" on the thing?
On the EF side I think I understand the "many to ...
1
vote
1answer
1k views
SQLAlchemy One-to-Many relationship on single table inheritance - declarative
Basically, I have this model, where I mapped in a single table a "BaseNode" class, and two subclasses. The point is that I need one of the subclasses, to have a one-to-many relationship with the other ...
0
votes
1answer
127 views
What is the difference between those terms: “Association” and “Relation”?
In the context of data modeling, what is the difference between those terms: "Association" and "Relation" ?
1
vote
2answers
359 views
How do I correctly model joined table inheritance with discriminator based on Role in SQLAlchemy
Is it possible to specify a discriminator column from another table? How do I do this with Declarative?
The reason for this is I have a joined table inheritance with
class User(Base):
id = ...
0
votes
3answers
604 views
How to handle choice field with JPA 2, Hibernate 3.5
I have an entity with Integer attributes that looks like this in proto code:
class MyEntity:
String name
@Choices({1, "BSD", 2, "Apache", 3, "GPL"}
Integer frequency
...
2
votes
1answer
3k views
Many-to-many relation with attributes in refClass
I'm currently designing a website, using symfony (1.2) with Doctrine as an ORM.
I have a Dinner class, a Criteria class, and a Mark class.
A Mark is linked with a Dinner and a
Criteria, and has ...
1
vote
3answers
6k views
In symfony/doctrine's schema.yml, where should I put onDelete: CASCADE for a many-to-many relationship?
I have a many-to-many relationship defined in my Symfony (using doctrine) project between Orders and Upgrades (an Order can be associated with zero or more Upgrades, and an Upgrade can apply to zero ...
0
votes
1answer
540 views
Hidden problems when modelling data using business objects
A common approach to data modelling is to use a data modelling tool (e.g. Erwin) to generate a schema, and then from the schema to generate business objects using an object relational mapper (ORM).
...
0
votes
2answers
336 views
Null key in Identity Map
I have a domain object used in an identity map (the keys are the object's Id property).
Pseudocode:
map = new Mapping();
map[domainObj.Id] = 'foo';
I observe the object to tell me when it has been ...
14
votes
5answers
5k views
What are the principles behind, and benefits of, the “party model”?
The "party model" is a "pattern" for relational database design. At least part of it involves finding commonality between many entities, such as Customer, Employee, Partner, etc., and factoring that ...
11
votes
12answers
3k views
Best way to model Customer <--> Address
Every Customer has a physical address and an optional mailing address. What is your preferred way to model this?
Option 1. Customer has foreign key to Address
Customer (id, phys_address_id, ...
0
votes
2answers
153 views
Large/complex dataset for ORM validation?
I'm looking for freely available sample data to do some ORM validation and performance testing on. My main requirements are:
Discriminated types: it needs to include some kind of inheritance eg ...
4
votes
6answers
399 views
“One-to-many” modeling question
What is the best way to model the following...
Assume I have two objects: Agency and Publisher, and both have a 1-to-n relationship to Employee. This is a true 1-to-n relationship, as each Employee ...
