Tagged Questions
The self-referencing tag has no wiki summary.
17
votes
3answers
2k views
Python: How do I get a reference to a module inside the module itself?
How can I get a reference to a module from within that module? Also, how can I get a reference to the package containing that module?
10
votes
2answers
181 views
Reflexive type parameter constraints: X<T> where T : X<T> ‒ any simpler alternatives?
Every so often I am making a simple interface more complicated by adding a self-referencing ("reflexive") type parameter constraint to it. For example, I might turn this:
interface ICloneable
{
...
7
votes
3answers
264 views
Uses of self referencing lists
I know it is possible to create a self referencing list in languages like Python:
>>> my_list = [1,2]
>>> my_list.append(my_list)
>>> print my_list
[1,2,[...]]
>>> ...
6
votes
3answers
254 views
class __init__ (not instance __init__)
Here's a very simple example of what I'm trying to get around:
class Test(object):
some_dict = {Test: True}
The problem is that I cannot refer to Test while it's still being defined
Normally, ...
6
votes
2answers
1k views
Fluent NHibernate Self Referencing Many To Many
I have an entity called Books that can have a list of more books called RelatedBooks.
The abbreviated Book entity looks something likes this:
public class Book
{
public virtual long Id { get; ...
4
votes
1answer
639 views
Entity Framework 4 CTP 5 Self Referencing Many-to-Many
I have the following scenario in my database. It is a record of Studies and those studies have other studies as prerequisites. In my DB design, it looks like this:
And my code looks something ...
4
votes
3answers
2k views
Eager loading of Linq to SQL Entities in a self referencing table
I have 2 related Linq to SQL questions. Please see the image below to see what my Model looks like.
Question 1
I am trying to figure how to eager load the User.AddedByUser field on my User ...
3
votes
1answer
90 views
Ruby on Rails: Retrieving a friendship given two users
I have seen the railscast on self-referential relationships here: http://railscasts.com/episodes/163-self-referential-association
I have built upon this in that I've included a 'status' field on ...
3
votes
1answer
156 views
How to build self referencing tables in Symfony using Propel ORM
I have an error trying to build a model from an existing database in a symfony project using the Propel ORM.
The error is this:
build-propel.xml:474:20: The 1:1 relationship expressed by foreign ...
3
votes
3answers
346 views
Self-Referencing C Struct
Can you have a structure in C that has elements of that same structure? My first attempt at implementing a binary search tree in C is the following:
#include <stdio.h>
struct binary_tree_node ...
3
votes
1answer
1k views
EF Code First with many to many self referencing relationship
I am starting out with using the EF Code First with MVC and am a bit stumped with something. I have the following db structure (Sorry but I was not allowed to post an image unfortunately):
Table - ...
3
votes
1answer
652 views
Is there a better way to self reference a type?
I'm finding lately a lot of code smells related to referencing generic classes in C#. My gripes especially apply to those classes which inherit from DependencyObject and contain DependencyProperties.
...
2
votes
3answers
104 views
What do you call a function that calls itself (is this called recursion)?
I am trying to figure out what you call a function that references itself. Is this termed recursion? Or is it simply a self-referencing function?
2
votes
1answer
60 views
Returning source objects in self-referencing has_many, :through
Here's my User model:
class User < ActiveRecord::Base
has_many :friends, :class_name => 'Friendship', :dependent => :destroy
end
Here's my Friendship model:
class Friendship < ...
2
votes
2answers
600 views
using self referencing in sql server
create table EMP(Eid int primary key)
insert into EMP values(11e3)
--self referencing
alter table EMP
add constraint fk_EMP_Eid
foreign key (Eid) references EMP(Eid)
--now insert
insert into ...
2
votes
2answers
266 views
Help with self-referencing model & view in Rails 3
I have a simple Client table (or model) where a Client can have a Parent Client (only one, or none). I modeled it this way:
class Client < ActiveRecord::Base
belongs_to :parent, :class_name ...
2
votes
3answers
572 views
Entity Framework Self-Referencial Many-To-Many with Payload ( Bill of Materials BOM )
I asked this question a while back without an answer, I believe it may be the most bizarre implementation for the EF, although it is quite practical. Here is my previous post:
...
2
votes
6answers
215 views
Different ways to reference yourself?
The handle to yourself is called different things in OOP languages. The few I've come across so far:
this (e.g. Java, C#)
Me (e.g. VB, vba)
self (e.g. Python)
Anyone know any others?
1
vote
1answer
23 views
how do I get a recursive result by querying a self referencing table in mysql?
I have a self-referencing table 'comments' where comments.replyToId REFERENCES comments.ID.
My question is, how do I query a database with a self-referencing table to get a result that is properly ...
1
vote
4answers
60 views
Is it possible to emulate object methods in C?
Is it possible to emulate object methods in C? I'd like to be able self-reference a structure as a parameter to a member function argument e.g.:
struct foo {
int a;
int (*save)(struct foo *);
...
1
vote
1answer
91 views
Self-referencing class in Hibernate or additional table
I have quite common problem, but no idea how to solve it in practice and explain my choice/solution. I have a situation when there are two tables in the database: Account and Contact. They both ...
1
vote
2answers
42 views
MySQL Query - Count Number of Records that Don't Reference Themselves
I'm still trying to use my limited knowledge of MySQL to help out a team at work, as in my last question.
The Warehouse table has a foreign key called nearest, which relates to another WarehouseID. ...
1
vote
3answers
52 views
Analog of 'arguments.callee' in Lua
Is there a way to refer to the currently executing anonymous function in Lua? Just like we can do in JavaScript with arguments.callee.
E.g.:
local function newLiftAnimator(obj)
local count = 0
...
1
vote
2answers
74 views
MySQL foreign keys on self
I'm currently trying to make a self referencing table in MySQL, however it seems I can't make a foreign key on the table itself, I'm getting an MySQL error:
Error Code: 1005. Can't create table ...
1
vote
0answers
45 views
Sqlalchemy event listener and relation issue
I have a problem of using event listener with the relation model, my model class is a self referenced table:
class Distributor(Base):
__tablename__ = "distributors"
id = Column(Integer, ...
1
vote
0answers
86 views
Rails: create multiple records of a self-referencing model from a single form
I have a self-referencing sales model. A sale object can represent an "independent" product sale, sale of a product set or a sale of a product within a set:
create_table :sales do |t|
t.belongs_to ...
1
vote
1answer
189 views
Problem with EF STE and Self-Referencing tables
This is my first post here, so I hope everything is fine.
Here is my problem:
I have a table in my database called UserTypes. It has:
ID;
IsPrivate;
Parent_ID;
The relevant ones are the first and ...
1
vote
1answer
131 views
Self-reference object in chained method calls
How do you reference the chained method's object in that same method's arguments. Let's say you have a number of chained method calls that trim/substring a string like so:
...
1
vote
4answers
207 views
mysql self-refrencing table returning id of parent and count of children
I have a self referencing table and I want a mysql query that will return only the top most parent (parent = 0) and the number of children belonging to each of those. This is what I have so far, but I ...
1
vote
1answer
324 views
Getting hierarchical data from self referencing table in SQL 2005
Hell all.
I am using SQL 2005, existing data with millions of records (so data structure can not be changed) and am trying to do the following:
I have some data (following example is from another ...
1
vote
0answers
82 views
SubSonic and self-referencing table
We are having some problems with SubSonic's ActiveRecord template and a self-referencing table.
We have a table, Category, that can contain sub-categories. The table contains a primary key (Id) and a ...
1
vote
1answer
379 views
JSP/Struts2/Hibernate: loop through a self-referencing table
Let's say we have a self-referencing table called PERSON, with the following columns: ID, PARENT, where PARENT is a foreign key to the ID column of another element in the PERSON table. Of course, many ...
1
vote
1answer
184 views
LINQ to Entity problem. Self-referencing entity
I have a Self-referencing entity (0 to *).
When i tried to delete one, got an error.
The structure of data is:
servise1
--service 1.1
--service 1.2
---service 1.2.1
---service 1.2.2
---service 1.2.3
...
1
vote
1answer
209 views
Using polymorph many-to-many self referencing relation with attributes on the relation in rails
I'd like to create a self referencing relation in rails. I have a Person model, and the person should have masters and pupils with same Person object.
So far I tried:
class Person ...
1
vote
2answers
1k views
Self-reference entity in Hibernate
I have an Action entity, that can have other Action objects as child in a bidirectional one-to-many relationship.
The problem is that Hibernate outputs the following exception:
"Repeated column in ...
1
vote
1answer
451 views
Need index with sys_connect_by_path function? How to emulate it?
I have a self referencing table in Oracle 9i, and a view that gets data from it:
CREATE OR REPLACE VIEW config AS
SELECT c.node_id,
c.parent_node_id,
c.config_key,
...
1
vote
1answer
1k views
Entity Framework Self Referencing Hierarchical Many To Many
OK this problem has it all.
Conceptually I have a Resource entity which can have many Child Resources and many Parent Resources. The Resource table has two fields, ID and Name with ID being the ...
1
vote
8answers
151 views
Why don't statements that don't do anything throw an exception (or warn the developer)?
I've been bitten a couple of times by statements in VB.NET (not sure if this effect exists in C#) that appear to be self-referencing, but when they're executed, they don't actually do anything because ...
1
vote
2answers
291 views
Composite Key on a Self Referencing Table
We have a composite primary key for the site table defined below. Functionally, this does exactly as we would like it to. Each site should have a parent site of the same district. Defining the ...
0
votes
1answer
43 views
Many to Many (self related) specific order entity framework
Hello I'm trying to do the impossible apparently.
I need a self referenced table with a many to many relationship to itself that also has a specific order in c# entity framework (4.2) database ...
0
votes
2answers
103 views
How to enforce a constraint of foreign key on columns of same table in SQL
While entering values in the following table...
employee:
empid number,
manager number (must be an existing employee)
0
votes
0answers
25 views
How to cascade delete optional self-referencing entity in CTP 5?
I have an entity like this:
public class Spouse
{
public int Id {get;set;}
public string Name {get;set;}
public int? SpouseId {get;set;}
public virtual Spouse Wife {get;set;}
}
I have it ...
0
votes
0answers
30 views
Entity Framework with SQLite and self-referencing tables
I have a self-referencing table in an SQLite database which looks like this:
-- Describe BOUNDINGBOX
CREATE TABLE "BoundingBox" (
"BoxId" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
"XMax" ...
0
votes
2answers
31 views
no id for model?
I get the error
undefined local variable or method `id' for #<Class:0x007fe1dc4e3bb0>
when defining a sql call in my model user:
RECENT_EVENTS_CONDITION = "(user_id = #{id}) OR user_id IN ...
0
votes
1answer
43 views
hibernate property-ref equivalent not present in grails
I am new to grails and am currently trying to map an Employee class. Each employee may or may not have a manager. Also, each employee (if he is a manager) will have a list of subordinates. Mapping to ...
0
votes
1answer
91 views
Self-referencing relationship in Entity Framework
I am using Entity Framework 4.1 code first and I have two entities and one abstract class that both entities inherits from.
public abstract class Customer
{
public long CustomerId { get; set; }
...
0
votes
2answers
54 views
how do I add a recursive foreign key to a table?
I have a table like:
table: comments, with rows: id, author, content, replyto
I would like 'replyto' to reference 'id' in the same table, how would I do that?
Many thanks.
0
votes
1answer
79 views
Django Querying Self-referential Many-To-Many relations
I am trying to get a list of all manuscripts in my db, print out the shelfmarks for each of them and in case that they are linked to other manuscripts also print out the shelfmarks of those ...
0
votes
4answers
790 views
Self-reference for cell, column and row in worksheet functions
I'm posting this question to which I'll post an answer, to not only have one easy to google place to find this information when needed, but also hoping that there are some better ways or improvements ...
0
votes
2answers
372 views
Self-referencing table, parent/child insert statement in a single query
I have a self-referencing table, and I am wanting add both the parent and child examples in a single query. Is there a better way to do it then to break it down in a fashion similar to what I have ...