Questions in this tag typically involve the association that a set of data has with other set(s) of data.
0
votes
2answers
22 views
NSPredicate for bilateral to-many relationship using Core Data?
I have an Item entity and a Wishlist entity. An item can be in multiple wishlists, and an wishlist can contain multiple items.
With the WishlistTableViewController, which lists all the wishlists, I ...
0
votes
0answers
9 views
Can I set dynamicly options for relationships in emberJS?
I have this ember app in which I have two model, Node and Role.
A Node has a kind property that could be either "Actor" or "Relation"
And I have this N to M relationship between Node and itself ...
0
votes
0answers
15 views
Ruby on Rails relationships. Best practice on devise with current_user
I am recently working on my first project in Ruby on Rails. I decided to use a gem called Active Admin ( http://activeadmin.info/ ) to my application, which it have incorporates the gem Devise.
The ...
0
votes
1answer
21 views
Has_One through a model when the model has_many
I'm trying to set up a system where my Billing Profile can hold an Address and Payment Method through a User. With addresses, it works fine since User only has one but with Payment Method, since User ...
0
votes
3answers
21 views
Rails 3 - Model related to current user in controller
We assume an authentication system is setup and we have access to a variable current_user, e.g.: using the Devise gem.
We have two models, User and Thing, User has one Thing.
In the controller, ...
0
votes
1answer
24 views
What is local and remote side?
The questions below are related to database table relationships and the abstractions which SQLAlchemy provides for it.
What is the difference between remote and local side?
If there is remote_side ...
0
votes
1answer
19 views
jQuery - Children, Parent, Sibling Conundrum
Im trying to hide all pages and show a specific page anytime a user clicks a .glossnav a I have the custom attribute page="" equal to the ID of the page I want to show.
What is the best way to do ...
0
votes
1answer
20 views
Adding values to “many to many ” relationship in entityframework
I have 3 entities in Sqlserver that I am mapping with the wizard of visual Studio
The three entities are packages categories and packages_categories,where packages_categories an many to many ...
0
votes
1answer
27 views
Composite primary keys or surrogate primary key on relationship entities (entities that are also relations) in Doctrine2
I have a large database where I have entities that are relations. This exactly because of the following comment in the Doctrine 2 manual: I needed to store additional attributes in our relations and ...
0
votes
0answers
8 views
ERM to RM binary relationship with weak entity
I have a question about converting a ERM to the relational Model (RM).
For example:
Student(SNR,Name)
Action(time1,time2)
Work(WNR,Type)
In this example SNR and WNR are primary keys.
Action is a ...
1
vote
1answer
43 views
ArrayCollection of objects extending an abstract MappedSuperClass
I'm building a form generator using Symfony 2.2 with Doctrine.
My entities are the following:
Form
WidgetText
WidgetSelect
All my widgets extend the following class:
/**
* Widget
*
* ...
2
votes
1answer
27 views
Advice on creating specific data type in CakePHP
I have a model called Company which contains a field called type. Based on that type, I'd like to offer the user a list of checkboxes to select to add more data about their type. To be more specific, ...
0
votes
1answer
10 views
Ruby on Rails relation output between 2 models
I have two models.
The first is events and the second cities. in the events table i have an column which called city_id.
I want the city name on each event show view.
In the events controller:
@city ...
0
votes
1answer
21 views
A class modeling a M:N relationship in Java: remember instances or just primary keys?
I have a class Lease modeling a relationship between classes Customer and VideoGame. Pretty simple and straightforward; it looks something like this:
class Lease() {
private VideoGame videoGame;
...
1
vote
1answer
33 views
Two unstable queries performance
I'm really confused about this two queries, they are have unstable query speed. Here is my two table scheme;
Posts table: (id, title, date etc...) [date index]
Relationships table: (news_id, ...
0
votes
1answer
33 views
Ordering Eloquent Results by Relationship
I have the following in my Event model:
public static function getEvents($perPage = 10)
{
$order = Session::get('event.order', 'start_date.asc');
$order = explode('.', $order);
$columns ...
3
votes
1answer
58 views
Problems creating a one-to-one relationship with an access database in c#
I am trying to create a one to one relationship in a Microsoft Access database using c#. So far, I have the following code which (from what I understand) should create a one-to-one relationship:
...
1
vote
1answer
26 views
Difference between has_one and belongs_to on a 1 to many relationship in Ruby on Rails
The idea is that i have a table users and a table customers. Each user has many customers that are related only to them. Actually Im using this model. So every customer that will be created will also ...
1
vote
5answers
62 views
Should Player inherit or own a Level?
I've been trying to learn OOP for the last few weeks as much as I can, and I've learned alot, but I'm not certain of this one, what should my class hierarchy look like?
Imagine two classes, here's a ...
0
votes
1answer
25 views
An alternative to nested has many relationships
I am porting a very old legacy application from PHP to rails and came across some functionality that I am not sure how to implement in a 'proper' RoR way.
Basically we have a signup form that ...
0
votes
2answers
53 views
How to make a relation between two tables without foreign key
I'm a total newbie and I'm trying to do a mysql database, using xampp for linux 1.8.1.
I want to make a relation between two tables A and B. For what I know foreign keys create a bijection, or a ...
0
votes
0answers
7 views
Relationship between two variations of the same comment object
Im seeing that through the Graph API I can get to a given comment one of two ways, the first having a two 'part' ID, the second having a three 'part' ID, like this;
10151333905645378_8516984 or ...
0
votes
1answer
71 views
Multiple Relationships in Laravel Query Builder
I have an Event model and a method called getEvents() which gets a list of events from my events table in my database.
Each event will in turn have delegates associated with it, and this is were it ...
0
votes
1answer
33 views
Inserting new records with one-to-many relationship in flask-sqlalchemy
I'm following the flask-sqlalchemy tutorial on declaring models regarding one-to-many relationship. The example code is as follows:
class Person(db.Model):
id = db.Column(db.Integer, ...
0
votes
1answer
34 views
Double Relationship in SQLalchemy
I got following problem in sqlalchemy. I made three different tables in sqlite, the first has no realtion, the second has a relation to the first and the third a relation to the second. So when I want ...
0
votes
1answer
21 views
How to handle many users and their customers in Ruby on Rails
Actually I know 2 ways to handle many users with their own customers data. This data should only be available to themself.
On way would be to set the relation in the models.
User model
has_many ...
2
votes
2answers
38 views
rails mongoid follow/unfollow guidance and optimization
i'ved been trying to find an ideal solution for following in mongoid and found this.
HABTM mongoid following/follower
for some reason, Im not sure how optimum is this and this post was way back in ...
0
votes
0answers
22 views
Tool for Documentation of Interconnections and Relations of Data Between Different Systems
I am looking for a tool or method to document and draw interconnections and relation of data in systems and software in our enterprise company.
I've try UML component diagram and layer diagram, but I ...
0
votes
1answer
51 views
My symfony2 page goes into infinite loop after refresh
I'm experiencing very strange behaviours when i go to the page that shows the detail of a group
When I load my page the first time the server is up the page show the content as expected. But if I ...
0
votes
2answers
22 views
Bidirectional association with one column on the inversed side and multiple on the owning side
I am using Doctrine 2. Let's say we have two entities: User and Bug. Is it possible to have a bidirectional association with one column on the inversed side (User) and multiple columns on the owning ...
0
votes
1answer
28 views
UITableView populating Core data one-to-many relationship using checkmark - CoreData: error: Serious application error
I have an app where I'm trying to select Resources (buildings, IT Systems) that a Programme relies on. The relationship between the Entities is ...
0
votes
1answer
12 views
Select menus in Rails 3?
I have the following code in my Rails 3 application, it's supposed to be displaying a select box with each asset_type record:
assets_helper
def asset_type_all_select_options
asset_type.all.map{ ...
0
votes
1answer
19 views
MS Access 1:0..1 relationship not working as expected
I have a main table called person and child tables member, volunteer, sponsor which are connected to the main table as 1:0..1 in ms access. But when I am about to enter records in let's say volunteer, ...
0
votes
2answers
51 views
Fetching one to many relationship data with Core Data
I have a Core Data model with an entity called SeasonInfo that contains a bunch of attributes, one of which is an attribute called year (int 16). SeasonInfo contains a one-to-many relationship to an ...
0
votes
1answer
96 views
Laravel 4 Eloquent many-to-many condition parameter
For a Laravel application I'm working on, I would like to do something like this with my Eloquent models:
$product = Product::with('terms')->find(1);
$brand = $product->terms('brand');
$color ...
0
votes
1answer
34 views
Core Data: Always have inverse relationship. Why?
I know both Apple and the consensus say that in Core Data, every relationship should have an inverse. This is not a question asking whether that is indeed the case. I do believe Apple and the experts. ...
1
vote
2answers
67 views
CoreData transient relationship example
Does anybody have an example on how to model and code a transient to-one relationship in CoreData? For example, I have 2 entities with a one-to-many relationship. Doctor and Appointment. Now I want ...
1
vote
2answers
75 views
SQL Table Relationship (Entity Framework Code First)
I was just having a play around with Entity Framework Code First and came to a stand still on the best way to relate a group of tables. I may be looking at this in completely the wrong way, in which ...
0
votes
0answers
30 views
Interrogating Core Data one-to-one relationship
hopefully, this is a simple question, but I cant find the answer in core data docs. I have an app setting up employees as members of functions (departments) using the relationship ...
1
vote
0answers
78 views
belongsTo relationship of two models data in extjs cannot display on grid panel
I am using extJS for frontend and yii for backend. I have two models as Abodeinstitute ,AbodeInstituteContact.
AbodeInstituteContact is a model which has 'instituteId' as a foreign key of ...
1
vote
1answer
219 views
SQL Server trigger insert values from new row into another table with many-to-many relationship
I have three tables:
tbl_profiles
tbl_options
tbl_profileOption
with many-to-many relationship
what the insert trigger on tbl_options I have to use to add the new options to each profile on ...
0
votes
1answer
30 views
One to one OPTIONAL relationship
Traditional EF questions starts with: My models are
public class Ingredient
{
public int IngredientID { get; set; }
public virtual RequestedIngredient RequestedIngredient { get; set; }
// ...
0
votes
1answer
160 views
Eloquent mapping table relation using five models in laravel 4
I have a project which is loading the menus from database. The architecture is first I have Modules for top horizontal menus (Admin, Settings, Reports) then Sub Modules for left sidebar vertical menu ...
1
vote
1answer
51 views
SQL Relationship Cardinality in Logical Design
I have the following issue. We are currently working on a system for a shuttle service company. Now, part of the entities in the database for this system include numerous lookup tables (such as ...
0
votes
2answers
63 views
CakePHP 2.4.2: Comments Model Relations-Get Original Post's Title
I have a pretty typical Comment model where Comment belongsto many other models such as Article, Review, Photo, etc and in turn each of those models hasmany Comment. Here is how I built the ...
0
votes
3answers
77 views
Aggregation using C++
I am trying to make one class work with another class. It is supposed to decrement the member of the other class.
my first class is
class Bike
{
private:
int miles;
Speedometer speedom;
...
1
vote
2answers
77 views
Blogs and Blog Comments Relationship in NoSQL
Going off an example in the accepted answer here:
Mongo DB relations between objects
For a blogging system, "Posts should be a collection. post author might be a separate collection, or simply a ...
0
votes
1answer
48 views
Doctrine one-to-many situation: how to easily fetch related entities
To simplify, two enities are defined: User and Comment. User can post many comments and every comment has only one user assigned, thus Comment entity has:
/**
* @var \Frontuser
*
* ...
0
votes
1answer
53 views
iphone/ios - core data relationship concept
I have a concept problem and I hope you guys can help me! On my app the user and his contacts can create events and share it.
here is my app model:
On App start I create my Profile (User) and fill ...
0
votes
0answers
40 views
Working with MY_Model
I'm still having an issue with relationships when working with the following model.
https://github.com/jamierumbelow/codeigniter-base-model
I'm trying to make the join so that the themes table and ...




