A type of relationship between entities of types A and B which associates a list of entities of type B to an entity of type A and vice versa. Types A and B may be the same type.
0
votes
1answer
8 views
Get value in template of ManyToMany ForeignKey field
I need to display the values of the categories field from the class Analiza from the models below in a template.
class Category(models.Model):
name = models.CharField(max_length=60)
def ...
0
votes
0answers
19 views
Is there a way to get all the many2many relationship?
I'm trying to find out a way to get all the many-to-many relationship for a particular table, but i can't figure out :(
I looked in information_schema.constraint_table_usage and ...
-1
votes
0answers
15 views
sql query with a many to many table as one column [duplicate]
lets say i have a table pizza (id_pizza, pizza_name), a table ingredient(id_ingredient, ingredient_name) and a table pizza_ingredient with (id_pizza, id_ingredient).
what plain sql query would give ...
1
vote
1answer
26 views
EF5 code first with ASP.NET Web API: Update entity with many-to-many relationship
I'm trying to update a Customer in my database using ASP.NET Web API and Entity Framework 5 code-first, but it's not working. My entities look like this:
public class CustomerModel
{
public int ...
0
votes
0answers
12 views
Code First Many-Many Error (may cause cycles or multiple cascade paths)
I have looked at so many questions and tried every solution available but it seems not to work with my specific scenario. I am trying to add a code-first many to many relationship for the below ...
0
votes
2answers
26 views
Mysql Many-Many Relationships
How to insert, update, delete data with many to many relationed table of MYSQL?
E.g.:
**Structure of my database**
table A - ID, Field1, Field2, ...
table B- ID, Field1, Field2...
table ...
0
votes
1answer
16 views
In rails build the relationship in the has_and_belongs_to_many association
In the rails app, I have an advisor model and department model. An advisor has and belongs to many departments and a department has and belongs to many advisors.
If an advisor and a department ...
0
votes
1answer
14 views
Rails/SQL: Find which belongs to all, not any
For example, I'v got simple app with Post model and Tag model. They associated with each other as has-many. I need to find Posts, which are associated with any number of tags.
For example, I want to ...
0
votes
1answer
39 views
Rails: Get all associated models from has-many association
I need to get all associated models from the other associated model, on which I want to run query first.
For example, I got Post model and Tag model. I need to get all Posts, which associated with ...
0
votes
1answer
38 views
Million ManyToMany Entries - Memory Problems
i develope a type of "Statistics-Web".
For example i have some blog entries and for each visitor a extra statistic entry.
Example blog entity:
/**
* @ORM\ManyToMany(targetEntity="Statistic", ...
1
vote
0answers
22 views
Clean way to get foreign key objects in PHP MySQL query
I use the following code to get a book object from my MySQL database.
$q = $pdo->prepare('SELECT
book_id "id",
book_title "title",
...
0
votes
3answers
33 views
Batch Script - muliple duplicate strings in a row
The below script provides the output of each occurence of the token# 1 field but I need add two more conditions.
Output should be provided.i.e. only when it is more than one since I have millions ...
1
vote
0answers
33 views
Entity Framework add a column to the middle table [duplicate]
I have 2 models, one with the Users and one with the Profiles. Each User can have many Profiles and vice versa. The problem is that the Users are linked to a Profile with a custom order. So I thought ...
0
votes
1answer
22 views
Ruby/DataMapper: Problems with multiple many-to-many associations
I have implemented models for User-Group relationship, where one User can be a member and owner of one or more Groups and where one Group can have one or more owners and one or more members.
Now, the ...
1
vote
0answers
36 views
Entity frame work Saving Many to Many Relationship
I have a news entity and I define a constraint to get the news based on their GroupID using GroupNews Table. Now when I add a new News because nothing is added to GroupNews table , News doesn't show ...
0
votes
0answers
43 views
Laravel 4 many to many relationship does not display the related data
I'm working with the following models: Game, User and Player where Player extends User. In this case Game and Player have a relationship of N:N and User extends Confide. So code stands like:
...
0
votes
1answer
30 views
Mapping a Many-to-Many relationship with an Attribute in Entity Framework
I'm always using Attributes to map the properties of my entities to their corresponding columns. Here's an example:
[Table("news_entries")]
public class News
{
[Key]
public int Id { get; set; ...
0
votes
1answer
22 views
ON CASCADE DELETE on JPA2 many-to-many relationship
I have read a lot of topics regarding cascading and many-to-many associations, but I haven't been able to find an answer to my particular question.
I have a many-to-many relationship between ...
0
votes
0answers
15 views
FluentNHibernate automapping ManyToMany
I'm trying to map a many-to-many relation, but the mapping doesn't work (list property stays null and items are not stored.
I use the following tables:
User(Id, Name, Password,...)
Role(Id, Name)
...
0
votes
2answers
40 views
Getting the group_id by using Groups with FOSUserBundle
I have configured the FOSUserBundle Group follow Using Groups With FOSUserBundle and get it to work.
// src/SM4/UserBundle/Entity/User.php
/**
* ...
0
votes
2answers
28 views
Delete from Many to Many Relationship in MySQL
I am not a MySQL professional I am just trying to make simple java application which accesses a MySQL database (e.g. The famous books/authors database) and manipulates it (i.e, add, update, delete).
...
1
vote
3answers
39 views
php foreach is outputting everything twice
everything works fine, but the output is being listed twice.
so it echos out: 'output a' 'output a' 'output b' 'output b' 'output c' 'output c' and so on.
when i do a mysql query in phpmyadmin, ...
0
votes
0answers
16 views
Entity Framework symmetrical self-referencing many-to-many relationship
Using Entity Framework Code First mappings, how would I set up a model with the following properties?
There is a table of Items
Each Item has a "SimilarTo" relationship to any number of other Items.
...
0
votes
1answer
37 views
Hibernate - multiple many to many associations - cannot simultaneously fetch multiple bags
I'm trying to map two many to many associations in cascade. I have three classes: User, Usergroup and Permission. The first one has a many to many association to the second one while the second one ...
0
votes
1answer
21 views
Rails 'DB - no such column' error for has_many through relationship
I created a has_many :through relationship for a rails app I am creating. However, I am unable have nested attributes for the many to many relationship.
My models are as follows:
article.rb
class ...
0
votes
1answer
38 views
newbie Django smart/chained menu trouble
i am trying to make a chained select menu, i have this model:
from django.db import models
class Health_plan(models.Model):
name = models.CharField(max_length=15)
class ...
0
votes
1answer
25 views
Django ChainedForeignKey smart menu
i am trying to make a chained select menu, i have this model:
from django.db import models
class Health_plan(models.Model):
name = models.CharField(max_length=15)
class ...
0
votes
1answer
21 views
django query filter manytomany
Normally when we want to get all the items with tags that appear in one of these tags 'a' and 'b' we do:
items = items.filter(tags__name__in = ['a', 'b',])
What if I want to get items with tags has ...
0
votes
1answer
30 views
Using surrogate keys in linking table in Access - how to show “friendly” key as well
I am migrating a horrific database from Lotus Approach '97 to MS Access 2010. This is the first time I have used access, however I am familiar with SQL.
I have a table of Events, and a table of ...
0
votes
0answers
34 views
Laravel 4 many to many and polymorphic in one direction.
I'd like a relationship between a few models that is a many to many and polymorphic in one direction, this is how I've solved it for now but it really bothers me to have it this way, I loose all ...
0
votes
1answer
30 views
Entity Framework and many-to-many relation with explicit link table
I'm using code-first Entity Framework and I know you can easily create a many-to-many relation between ObjectA and ObjectB by adding an ICollection to each; EF will automatically create a link table ...
0
votes
1answer
38 views
can not update many to many relationship in hibernate
this is my pojo, User and Book
@Entity
public class User {
private int id;
private String username;
private String userage;
private String useremail;
private String usergender;
private ...
1
vote
1answer
32 views
Django regroup many to many field
I'm having some trouble making this work on the template, wonder if I could get some help:
I have a table with plants in it, and the plant table has a many-to-many relationship with the category ...
0
votes
1answer
14 views
How to allow write rights only to specific users building a new module in OpenErp?
I'm new to OpenErp and I'm trying to undestand access rights writing a new module.
Let's say I have this module called Project, with title, description and a many2many relation with res.users called ...
0
votes
1answer
57 views
Many-To-Many Sorting
ASP.NET MVC4, C#.
I have two models A and B.
They have a many-to-many relationship with each other.
Suppose A has a collection of B. I want to sort the collection of B on A and persist it in a ...
0
votes
1answer
92 views
Laravel 4 many to many relationship not working, pivot table not found
I'm currently having problems with a n:n relationship with Laravel 4, I'm having an error wiht pivot table which is quering on a table with with both components on singular name. I create a pivot ...
1
vote
1answer
122 views
MVC 4 - Many-to-Many relation and checkboxes
I'm working with ASP.NET MVC 4 and Entity Framework. In my database, I have a table Subscription which represents a subscription to public transports. This subscription can provide access to several ...
0
votes
0answers
43 views
Hibernate and subselect
I have problem with many-to-many mapping. Simplyfied schema of database tables is written below.
CREATE TABLE RESOURCES (
`RSC_ID` INT AUTO_INCREMENT,
`RSC_TITLE` VARCHAR(2048) COLLATE ...
0
votes
1answer
51 views
Entity framework (code first), many to many, users and roles
I got MVC 3 application with custom MembershipProvider, so it stores newly registered users to my database.
I'm using Code First approach with existing database (I've used entity framework power tools ...
0
votes
2answers
37 views
How to map an ArrayList of primitives to a single column?
Let's say I have the following situation:
Object Car has an ArrayList of prices, which are all numbers. Is it possible in Hibernate to save all the prices in a single column? I know this violates ...
0
votes
0answers
24 views
Ebean java cascadetypes manual save
I started with play2 and I just can't get my head around this whole save thing with Ebean.
If I have an Object A, which has a List<B> which is a ManyToMany Relationship, then I have to either ...
0
votes
4answers
53 views
Django ManyToMany Field
I need to make a smart menu, for which I need a ManyToMany relation.
My model is:
from django.db import models
class Health_plan(models.Model):
a = models.IntegerField ()
b = ...
0
votes
0answers
60 views
Why is it that Entity Framework gives the error “Enumeration yielded no results” for typical many-to-many functionality?
Our ASP.NET C# web application is used in the following environment .NET Framework 4
ASP.NET Web Forms.
IIS 7
Windows 2008
Visual Studio 2010
.NET IDE C#
HTTPS ( SSL )
-Entity Framework 5
In ...
0
votes
0answers
45 views
rails many to many relationship from the beginning (all model creation)
I've read a lot of SO questions on this and migration guides and api and am not clear. Most of the answers assume you have models and tables for the two entities. I'm starting from scratch so need a ...
-3
votes
1answer
36 views
Many to Many RelationShip in sqlite android [closed]
There are two tables in my database
1. Doctor
2. Clinic
Here Doctor have one or more clinics and clinics can have one or more doctors..
So i want many to many relationship between both tables
So ...
0
votes
1answer
27 views
Django model ManyToMany id paradigm
i am new to Django, and i having trouble understanding how the model.ManyToMany works.
I have this model:
from django.db import models
class Health_plan(models.Model):
a = models.IntegerField ()
...
0
votes
1answer
33 views
jpa entity relation many to many self relation
I wish to make jpa entity for clients, something like adding friends on facebook or googe+
Got a bit confused
This auto generates to code below,
/*
* To change this template, choose Tools | ...
0
votes
1answer
27 views
Doctrine: Removing entity in self-referencing (many-to-many)
I would like to ask your help in deleting association.
My User entity:
class User
{
...
/**
* @ORM\ManyToMany(targetEntity="User", mappedBy="following")
**/
private ...
0
votes
1answer
52 views
Java many-to-many object does not persist in join table
The 'Batch' object persist's perfectly in the database if I don't include the many-to-many property 'Test'. I have already tried out many different things from similar questions but can't find an ...
0
votes
1answer
29 views
When to use ManyToOne and ManyToMany relationships
The below is a database of colleges, and its ratings. The below is how I thought
Each Class (Batch, ex: Batch of 2009) belongs to a Department
Each Department (ex: department of pharmacy) belongs to ...


