Self-reference is the ability of a program (or logical sentence) to refer to itself, either directly or indirectly.

learn more… | top users | synonyms

0
votes
1answer
42 views

Self-referensed entity to wpf treeview using Binding Converter and ObservableCollection

I have entity , build by default from the database table which references to itself I'm new here and low reputation not alows me to add images, so I'll write all I can. Area : EntityObject ...
0
votes
1answer
77 views

C++ self referencing object and inheritance

I have a parent class which as a member contains an array of pointers to objects of the same type as itself. I have another class that derives from the parent class. I want that the derived class uses ...
0
votes
0answers
27 views

Doctrine 2 - how to query a self referenced entity with joined associations to avoid extra SQL queries?

I have the following query: $queryBuilder ->select(array('c', 'cu', 'e')) ->from('Common\Entity\Company', 'c') ->leftJoin('c.customer', 'cu') ...
1
vote
0answers
43 views

How to unset an object which contains a self-reference?

I have found this solution, but perhaps there is a better one, what do you think about it? class A { #A self-reference private $_a; #Construcotr makes a self-reference ...
0
votes
2answers
219 views

T4 engine not recognizing current project namespace

I am using VS 2010 (C#) T4 templates to generate code. I need to iterate through all types within my project, shortlist entity poco classes and generate wrappers. The problem is, the project ...
6
votes
4answers
133 views

PHP: if ($Name=='ProxiedIP') leads to 500 (Internal Server Error)

This may be too obscure of an question, but I've been troubleshooting a baffling server error for hours and have pinned it down to the most bizarre issue; at this point I just want to know if anyone ...
1
vote
0answers
36 views

Wrong insert and select with self relationship many-to-many

I have a abstract superclass "view" @Entity @Inheritance(strategy = InheritanceType.SINGLE_TABLE) @DiscriminatorColumn(name="tipo", length=1) public abstract class View extends DefaultModel ...
2
votes
1answer
106 views

Oracle User Defined Objects - collection of self referencing type [duplicate]

Possible Duplicate: How can I define a type in oracle11g that references a collection of that type? I have a scenario in which I have to create a user defined type A which has a collection ...
0
votes
1answer
184 views

table variable self reference in SQL server 2008

I found a very strange thing in SQL server. I am not sure it is normal. insert @table select ID, Lastname from tableB where ID NOT IN ( select ID from @Table) It always says 0 row inserted. If I ...
0
votes
0answers
135 views

Rails: Recursion in has_many/self reference association to find all children

I have two models like this: class Manager < ActiveRecord::Base has_many :clients has_many :managers, :class_name => "Manager" belongs_to :boss, :class_name => "Manager" end class ...
0
votes
2answers
340 views

Discrimination based on the value of foreign key Hibernate ORM mapping

I am trying to perform a self-reference mapping (parent/child-like relationship) mapping to one table. What I am trying to have is two different entities from same table so that I could separate ...
-3
votes
2answers
115 views

Python 2.7 error with a self-referential variable assignment in a function: local variable referenced before assignment [closed]

The following script produces a "local variable 'var' referenced before assignment" error: def func1(): var = var + 1 var = 1 func1() How would you suggest to correct the code? Why does this ...
2
votes
2answers
300 views

How would you model contact list with self-reference and category?

Wrestling my head to model following User has many Contact categories (family/friends) One Contact category has many contacts One contact can be in one or more contact categories. I end up with ...
1
vote
3answers
741 views

Database design parent child table vs multiple tables

I am trying to create a parent child relationship for country-state-city-head. I considering two approaches- 1) Create a single table- pk| name | type | parent 1 | ...
2
votes
3answers
101 views

Finding the parent object in a self-referencing Java class

I've created a class to mimic a file structure for a program (a text-based game) I'm working on. This is a simplified version: public class Dir { public Dir(String name, Dir[] subdirs) { ...
1
vote
2answers
226 views

Class Self-Reference Issues

All of my code can be found here. I'm trying to create a complicated tree for a project however this is just the beginning of the project (the construction of a data structure). Also, I think it ...
2
votes
0answers
383 views

Entity Framework cascade delete parent row in self-referenced table

In my MS SQL Server 2008 database I have self-referenced table with categories for hierarchy (ID and ParentID). Table have a self Foreign Key constraint and "Instead of Delete" trigger to perform ...
2
votes
2answers
266 views

Does Python have NO need for the Y-Combinator?

After an hour of trying to understand the Y-Combinator... i finally got it, mostly but then i realized that the same thing can be achieved without it... although I'm not sure if i fully understand ...
0
votes
1answer
488 views

Self referencing model in ASP.NET MVC 3 using Entity Framework

I have a category class and it can reference itself(only one level up) as parent category. When I retrieve the data using dbContext using Entity Framework, the parent relationship is not loaded. How ...
1
vote
1answer
310 views

How to make references between expando models?

Update This was my best effort creating the following scheme user = self.auth.store.user_model.create_user(email, password_raw=newpasswd) if not user[0]: # user is a tuple return ...
5
votes
4answers
299 views

How can I refer to the class type a interface is implementing in java?

I came to a problem with interfaces in a program i'm making. I want to create a interface which have one of it's methods receiving/returning a reference to the type of the own object. It was something ...
0
votes
1answer
294 views

Deserialize self referencing objects with Jackson

I have a JSON string looking like that (simplified): [ { "id":1, "friends":[2] }, { "id":2, "friends":[1,3] }, { "id":3, "friends":[] } ] The content of friends are ids of other users in the ...
2
votes
2answers
1k views

pass self class reference to child class

In C# 4.0 (or earlier if it can be done), how does a parent class pass a reference of itself to a child class. For example: class Book { public string bookname = "a"; public static ...
1
vote
1answer
1k views

Self-Reference One-to-One mapping in Hibernate

I have a class A which has a property type indicating whether it is a receipt or a delivery. A receipt can be mapped to a single delivery and vice-versa. Now consider that the receipt transaction and ...
2
votes
1answer
149 views

How to set up the classes for a polymorphic, self-referential group of models?

I'm trying to set up an application that includes groups that can be composed of users or existing groups. Examples: Users Andy, Bob, Charlie, and David are in the 1st forwarders group. Users Eddy, ...
1
vote
2answers
97 views

Tool to produce self-referential programs?

Many results in computability theory (such as Kleene's second recursion theorem) ensure that it is possible to construct programs that can operate over their own source code. For example, in Michael ...
8
votes
1answer
486 views

self-reference in Haskell functions

I am learning Haskell and I the following expression on Haskell Wiki really puzzled me: fibs = 0 : 1 : zipWith (+) fibs (tail fibs) I can't quite figure out why this works. If I apply standard ...
0
votes
2answers
459 views

Ruby method returns nil, problem with self reference

I have defined a method called ccy which takes in a number num, determines the currency (an attribute of the parent Record model) and returns the number multiplied by a conversion factor. Self, in ...
0
votes
1answer
860 views

how can I do self-reference with ruby on rails?

I want to self-referentiate a model in a RoR app but, I don't know exactly how. I want to save a linked list where the next node has the id of the previous one. how can I do this rails way? It is a ...
0
votes
1answer
144 views

Referencing a derived type inside itself

I have something link this: public abstract class Wrapper<T, TWrapped>: where TWrapped : Wrapper<T, TWrapped> { protected T baseObject; protected ICollection<T> baseList; ...
15
votes
3answers
1k views

Is self-reference possible in MATLAB?

As noted here, functions in packages, as well as static methods in classes, still need to use a packagename.functionname syntax or import packagename.* for each function (since the imports are part of ...
0
votes
2answers
174 views

KNOW THUSELF: What OOP languages really support true self-reference keyword not just “this” keyword? [closed]

As I read here Lua has a self How does an object reference itself in Lua? But is it really self in the sense that WHATEVER THE CONTEXT self always refers to the object itself. Seems like a tautology ...
0
votes
0answers
1k views

EF4 CTP5 Self-Referencing POCO Inheritance|Mapping|TPH issues

using System; using System.Collections.Generic; using System.Linq; using System.Text; using Xunit; using System.Data.Entity; using System.Data.Entity.Database; namespace TestEFCTP.Tests { #region ...
1
vote
1answer
1k views

rails: self-referential association

My needs are very simple: I have a Tip table to receive comments and have comments to receive comments, too. To retrieve each comment that is stored in the same table (comments), I created another ...
4
votes
3answers
3k views

Hibernate3: Self-Referencing Objects

Need some help on understanding how to do this; I'm going to be running recursive 'find' on a file system and I want to keep the information in a single DB table - with a self-referencing hierarchial ...