Entity-relationship model (ER model for short) is an abstract and conceptual representation of data.

learn more… | top users | synonyms

0
votes
0answers
27 views

Automaticly insert and update ID of oneToMany entities (Hibernate/JPA with spring transactions)

I having some trouble with spring transactions and oneToMany entities. I have a central entity which is "Candidat" I want to persist and update fields/relations on cascade (and orphans removal for ...
1
vote
0answers
22 views

Call REGEXP_LIKE using LINQ to Entities with Oracle

So if I have an Oracle query like this: SELECT * FROM xyz WHERE REGEXP_LIKE(col1, '^[0-9]+$'); How can I call REGEXP_LIKE using LINQ to Entities with the Oracle.DataAccess client: var q = from x ...
-1
votes
1answer
30 views

JPA child doesn't persist when parent persist method is called

This child entity is not persisted along with the parent when em.persist is called @Entity @Table(name="Z_PARENT") public class Parent { @Id @TableGenerator(name="parentIDGen", ...
0
votes
0answers
42 views

Entities framework validation

I am developring .net mvc web api application using entities framework and I have business rules to I want to enforce for validation. I saw that I can implement IValidatableObject but is not good ...
0
votes
1answer
53 views

Pass method from MVC to WCF

I made in my controller method that should creat another product [HttpPost] public ActionResult Create(ProductType product) { if (ModelState.IsValid){ ...
0
votes
0answers
15 views

How to make a OneToOne relationship with FOSUserBundle?

I want to separate User login credentials from user Profile, so I created a Profile Bundle to connect to FOSUser with a 1to1 relationship, so when a user register, a relation is made between the ...
0
votes
1answer
61 views

C# Linq to Entities Custom query to create one field in parent entity that contains a collection of child entities for binding in WPF

I am trying to create a binding source for a gridview that contains the datasource for a child gridview. I have attempted it in the following way: I have 3 tables: Patients: id(PK), fname, fname ...
0
votes
0answers
21 views

IsDirty() flushes new Collection entities

I have a WPF application and am using NHibernate. My question is how do I manage change? I am not completely sure about the behavior of the IsDirty. This link describes my problem. The problem list ...
0
votes
3answers
29 views

Correct use of class hierarchy?

For example: class a to b to c, c to a
3
votes
1answer
32 views

GAE model hooks not working on admin server. Why?

I have a _pre_delete_hook that works ok for all of my deletes upon entity keys. The problem is that when I manually delete an entity from the interactive Datastore Viewer the _pre_delete_hook does ...
0
votes
2answers
40 views

How to populate an ArrayCollection variable with existing data from a form?

I'm kind of new with Symfony, and I have a question. I'm currently making a Gallery Bundle (consisting of 'Gallery' and 'Image' entities), and here comes my problem. I can upload images as well as ...
1
vote
1answer
28 views

Detect routes and entities from Symfony2 vendor

i'm creating a bundle that adds an entity and a few routes to be use in a Symfony2 application. I want my bundle to be used as a vendor, so I've created all the files, published it on GitHub and ...
0
votes
0answers
24 views

Retrieving all categories after searching (Doctrine 2, Zend framework 2)

I've a problem with my querybuilder. I've two entities (user and categories). It's a many to many relationship, so a user can have more categories, and categories can have multiple users. Doctrine ...
-1
votes
0answers
6 views

using Dbpedia through JAVA

I wanted to use dbpedia to extract all person , organization, countries , city names. i wanted to use them to build my knowledge base. I am trying to do this in JAVA, please if someone can help me ...
0
votes
0answers
36 views

Where have I to define my entities?

i am working an my own PHP mvc framework. Now I want to know where to get and specify my entities. An example, should I do this: class User_Model extends Model { private $name; public getName() {} ...
0
votes
1answer
32 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 ...
1
vote
3answers
54 views

how should I send entities by socket on Java

I'm into a web project which needs a bit of infrastrutcture, something in which I have not much idea really, so I'm here asking for your sage advice :). The project is using spring for the MVC and ...
0
votes
0answers
32 views

Hibernate: Merging Two Managed Entities

What is the most elegant/correct way of merging two managed (persistent) objects of the same kind with updating references to the merged object and dropping one object? Consider the following ...
1
vote
1answer
34 views

Char(3) field @Id is not cacheable in eclipselink jpa

For historic reasons i have some tables with char(3) primary key in our database. For example the country table. When i find the entity with: String id = "D "; Country c = em.find(Country.class, ...
0
votes
1answer
83 views

How do i design EF5 code first entities with protected/private members DDD style

So I am reading this DDD book and at the same time designing a new system. In the DDD book they have an example where the entity have private members such as ID and other values. Lets say as an ...
0
votes
1answer
87 views

How do I protect my code from HTML Injection? [duplicate]

This is my code, how do I prevent people from injecting HTML or anything like that in the comment and name field? I read something about html entities and stripping tags, but I have no clue whatsoever ...
0
votes
0answers
27 views

How to flush zend_form to multiple entities

I'm struggling with flushing my zend_form to 2 entities. In total I've 3 entities. User, Address and Country. Country is not interesting because it has standard values where only the ID come into ...
0
votes
1answer
24 views

Associations with entities (proxy error)

i've the follow entities: User Address Country My user connects to Address and Address to Country. I've a magic __setter and __getter, and when I use $addresses = $user->__get('addresses');, it ...
1
vote
1answer
39 views

LINQ to Entities does not recognize the method 'System.String get_Item(System.String)' method

I've looked at the various solutions here but none of them seem to work for me, probably because I'm too new to all this and am groping in the dark a bit. In the code below, the object "appointment" ...
1
vote
1answer
42 views

HTML5 with charset = utf-8

My understanding of HTML5 is tht when one has got <meta http-equiv="content-type" content="text/html;charset=UTF-8" /> in the document header the only characters that need to be converted to ...
2
votes
1answer
48 views

ADO.NET Entity Model Update

Hi i am trying to update a record from the database, but for some reason the record is not updated. I am using ADO.NET entity Framework 4.0 public void updateCredits(string username) { ...
0
votes
1answer
117 views

Entity Framework - Saving changes made to a detached entity

Say changes have been made to a detached entity in EF 4. If we want to save theses changes when we re-attached the entity, is it possible to do this with ApplyCurrentValues without querying the DB to ...
1
vote
2answers
71 views

Updating ManyToMany jointable in Java

I generated Entities and Facades using netbeans. Below is an example that works/updates: I have 2 tables that are joined by a join table where it works: User PK: userID Category PK: categoryID ...
2
votes
0answers
89 views

TinyMCE - mceInsertContent without converting html to entites

I am writing a plugin that will allow me to add prepared html partials to my editor. My problem is that when I run mceInsertContent command it automatically converts my < > brackets into entities. ...
0
votes
1answer
33 views

using @Embedabble with a foreign key and manyToMany relation

I wrote an example for the code i am trying to implement, i get an error with Constraint "Student_Teacher_FK" already exists. the @embiddable class has a foreign key that is created twice with ...
2
votes
2answers
100 views

How to access properties from subclasses in an entity component system

I just started working on an entity component system for a sidescroller game. I'm pretty new to C++ but I've already read through a lot of tutorials and decided the best way would be to have a entity ...
0
votes
1answer
101 views

JPA entities as a shareable jar not working in a WAR file unde Tomcat 7.0.27

i tried to share my entities in a JPA 2.0 project in eclipse Juno, ´cause i´m creating a test project and i need to access then there to make my tests and if i create any other project a can reuse ...
0
votes
2answers
42 views

Adding to ICollection of type entity issue

Can some one help Not sure what I am doping wrong: in my controller: [HttpPost] public ActionResult SaveRecommendedUserDetails(RecommendAFriendViewModel model) { ...
-4
votes
1answer
63 views

Core Data - Multiple entities [closed]

Fellows! I have an app using Core Data where I created one Entity (let's call "Entity1") and one attribute. I implemented it and the app was running perfectly. It was reading, writing and deleting ...
0
votes
1answer
209 views

Using EF5 Linq to Entities as DAL to BLL to ObjectDataSource

I am struggling with Linq to Entites. I am new to EF5 and Linq. I am programming in VB.NET. I have been using Table Adapters that return DataSets as the DAL into a BLL that I then linked to ...
0
votes
1answer
409 views

Retrieving custom entities in CRM 4 C#

In our CRM environment users have a 1:N relation to an available hours entity which represents their actually available hours for the week. I'm looking for a way in c# to retrieve all the available ...
0
votes
1answer
61 views

How should save objects in the database which are no entities

An entity "schoolyear" has configurable visible week days which are visible or not in a time planner. I see now 2 posibilites to save the visible week days. Either I make an N:M relation: N ...
1
vote
3answers
44 views

Using html entities in mobile webapp [duplicate]

I created a simple webapp using jQuery Mobile 1.2. Now I want to know whether it is better to use html entities in page body or should I write texts with all characters in utf-8 charset? Both ways ...
0
votes
1answer
99 views

How to escape special characters from a markdown string?

I have a markdown file (utf8) that I am turning into a html file. My current setup is pretty straight forward (pseudo code): var file = read(site.postLocation + '/in.md', 'utf8'); var escaped = ...
0
votes
1answer
59 views

Doctrine2 + CodeIgniter and database table creation issue

I'm using Doctrine2 with codeIgniter, I've created some models in yml format. Using command line I've created the Proxies and Entities. When I'm trying to create the database tables, I'm getting the ...
0
votes
1answer
93 views

C# EF4.0 POCO - how to set navigation proprety with entity from different DbContext?

I want to set a foreign key on an entity. I have the foreign entity exposed in my user control, and want to set it via WinForms data binding. Here's the catch - the foreign entity was originally ...
1
vote
2answers
91 views

Getting rid of HTML entities in a web title generated in PHP

I have a website with the content management system GetSimple which is written in PHP. I edited it as I needed, however, in the header, this is what is supposed to be there: <title><?php ...
0
votes
1answer
128 views

Many-to-Many compile error using greendao for android [closed]

Problem solved! - I added my solution at the bottom. I have what a think is a fairly simple question but I can't seem to find the answer in the documentation. I am trying to model a many-to-many ...
-2
votes
1answer
138 views

html_entity_decode not working in XML dom nodeValue [closed]

I have the test.xml file where I want these node values to be encoded: ... <section id="1"> <title id="2">&gt;</title> <title id="2">&lt;</title> <title ...
1
vote
0answers
73 views

Designing a typical GUI for editing entities [desktop application]

I have little experience in developing GUI for desktop applications, but I want to develop a typical GUI for creating/editing entities (e.g. Customer, Suppliers, etc.) which would be similar for many ...
3
votes
2answers
133 views

Passing business entities through layers in multi layer architecture

Currently I'm working on a project exploiting multi layer architecture as described in Application Architecture Guide 2.0 with 5 layers(DAL, BLL, Facade, Presentation Layer and Common Layer). Here we ...
2
votes
1answer
39 views

How to display accented characters entities in a iOS app?

In my iOS app I get data from an external PHP script which builds and returns strings using queries on a mySQL database. In this database, texts have HTML entities in them, e.g. Josè is written as ...
1
vote
2answers
81 views

Symfony2 generate entities error

I'm trying to generate entities from existing tables in database, I keep getting the same error in a particular entity, which is imported from a second database (or entity manager), but I re-created ...
1
vote
0answers
38 views

When I check out a MVC Project that Uses EDMX I have to Hit Ctrl + S to update the model How Do i get around this when doing an automated Build

When I check out a MVC Project that Uses EDMX I have to Hit Ctrl + S to update the model before I Can build. Otherwise I get a lot of build erros. How Do i get around this when doing an automated ...
0
votes
1answer
307 views

Symfony2 Doctrine doctrine:generate:entities never works

I am relatively new to Symfony2 and so far love it - except for this problem that I keep coming up against. The dreaded (for me): doctrine:generate:entities When I started my first Symfony2 project ...

1 2 3 4 5 8