In computer science an entity is an object which has an identity and can be uniquely determined, holds storable information or can be processed. As the term has a very abstract and general meaning prefer to use this tag only in conjunction with other more specific tags.

learn more… | top users | synonyms

1
vote
1answer
192 views

crm2011, javascript onchange event system entity

I'm new to CRM2011 and can, but I have been given a task that I don't know how to solve and didn't find any answers in Google. I've 2 entities. Case and Notes (Annotation - system entity). Notes is ...
1
vote
2answers
86 views

Differentiating between domain, model, and entity with respect to MVC

Can someone explain these 3 concepts and the differences between them with respect to an MVC framework along with an example. To me these appear almost equivalent, and it seems they are used ...
1
vote
1answer
152 views

Entity Framework Code First Updating with Where Clause

I am using FilteredSet to have automatically data from the current logged user of my system. It provides me a dynamic way to return data from the current user and not access other users data. I would ...
0
votes
1answer
70 views

iOS multiple entites for one managedObjectContext

There is a core data model with two entities i my iOS application. Entity: Unit / Attributes: unit_name - NSString ->> Relationship to Exercise (one to many) Entity: Exercise / Attributes: ...
0
votes
2answers
150 views

HTML5 Canvas game - Entity class

My player is not drawing. Any help would be appreciated! I would like to make a player object, that is of the entity class. Basically, my player is not drawing, and I would like to keep this entity ...
1
vote
1answer
58 views

show many to many relationship field label in symfony2

I have an entity News bound to an entity Company with a many to many relationship. Such relationship is set in a form through an entity field where I can select companies tied to my news. Everything ...
0
votes
0answers
26 views

DeleteObject is throwing DataServiceException

I have created a client app in C#, consuming a wcf dataservice. The problem causing entities are related many to many. Create Read Update works but now i want to delete some entities. After calling ...
1
vote
2answers
111 views

Symfony2 merge multi step form to one result

These are my first steps on SF2. I want to set up a multi step form on an entity which contains other entities. I've a form type (shortened) class ApplicationFormType extends AbstractType { ...
0
votes
1answer
41 views

LINQ many to many query throws NotSupportedException

I have a many to many relationship in my EntityFramework. I want query all "teilnehmer" which are related to a specific "mannschaft". here is my query var teilnehmerquery = (from teil in ...
0
votes
1answer
28 views

Java EE applications and WET solutions

I have to develop one big Java EE 6 application on JBoss AS 7. The application is big and must be split in modules (it's a request). To maintain modularity I organize it into modules like .war and ...
1
vote
0answers
50 views

entity class from database wizard hangs

I'm developing a web app using Netbeans 7.3, Glassfish server and SQL Server 2008 (Schema named dbo and is 65 gigabytes). I've connected to the database (in the "Services" tab) and now I am trying to ...
2
votes
2answers
153 views

Entity framework - objectcontext disposed exception

I've been debugging this program without any result, and unfortunately I can't see the root of the problem. I get this exception: The ObjectContext instance has been disposed and can no longer be used ...
0
votes
1answer
48 views

Entity Framework Handle Connection Loss

Our application is using EF 5 and c#.net 4.5. Since our application is used around the world with one cenral server, we have problems with running into timeouts and losing the connection to the ...
0
votes
0answers
70 views

bltoolkit inserting data to a table

I have this entity : namespace Entities.dbo { [TableName("tbl_snapshot")] public class Snapshot : AbstractEntity { [MapField("track")] public int TrackId { get; set; } ...
0
votes
1answer
73 views

JPQL query updating CollectionTable

I have the following entity: @Entity(name = "Directory") @Table(name = "Directory") public Directory { @Id @Column(name = "id") protected String id; @ElementCollection @MapKeyColumn(name = "file") ...
0
votes
1answer
106 views

symfony2 entity oneToMany and methods

Hi i had fully successfully setted my entity onetoMany and ManyToOne i generated setters and getters and in user entity it created this method: user entity: /** * ...
1
vote
0answers
27 views

Is there any advantage in building a business application with an Entity-Component System?

I understand the appeal of using the data-driven Entity-Component System for game development. Naturally I am trying to find other areas to apply this paradigm. As I am about to embark on developing a ...
1
vote
0answers
34 views

2 and more UNIDIRECTIONAL relationship (onetoone)

I have a question. I have 3 entities: member, contact, fine Member to contact (one to one unidirectional) Member to fine (one to one unidirectional) In the member entity class I've declared ...
0
votes
1answer
41 views

How to use xml entity reference in eclipse

I'm trying to use XML entity reference in my workspace in Eclipse Indigo and am not able to refer the xml file as expected. I'm using the following syntax: <?xml version="1.0"?> <!DOCTYPE ...
1
vote
1answer
83 views

Linq Contains() Not supported

(from a in GetCtx().Application where identifiers.Contains(a.os + ":" + a.osIdentifier) select a.id).ToList(); It is giving me NotSupportedException: ...
0
votes
0answers
52 views

How to push FOS users list in my contract registration form?

I'm new in Symfony, and working on my first project. I'm using SonataAdmin, FOSUserBundle. I've already created a ContractsBundle and a few simple entities called Contractor, Service, Contract; ...
0
votes
1answer
48 views

Foreign key fields in Entity?

I am new to ASP.NET MVC and spend some time on creating forms for entities with related entities. While looking for the best way to achieve this, I figured out that most examples on the Internet use ...
0
votes
1answer
40 views

How to insert data into this Entity object?

This is my Entity class package entity; import java.io.Serializable; import java.util.Date; import java.util.List; import javax.persistence.Basic; import javax.persistence.Column; import ...
0
votes
0answers
16 views

How to use iciql Model Generation

now, I tried to make automatically Model Class with iciql's Model Generation Tools. I use Windows7. I tried this command on command prompt. **>cd C:\Users\xxxx\iciql-1.1.0 java -jar ...
0
votes
2answers
88 views

Java Entity Table Model

I want to make a table model which stores entities via a list. Like this; List list = new ArrayList<Entity>(); list.add(entity); tableModel.setEntityVector(list); in the Entity Table Model ...
0
votes
0answers
106 views

Entity Framework Power Tools beta 3 reverse engineering with oracle database

I was able to generate my POCO with the tools but the naming of the name of the classes is all UpperCase. I try to modify the entity.tt file but no luck. I want to know if someone has a hint for ...
0
votes
1answer
55 views

How to Update Entity Model properly after change of data base Structure

i am Already use entity modal in my project. i want update my entity modal from database because i change in database structure*(ADD THREE TABLE ).* but when i update my entity modal this update. but ...
0
votes
1answer
108 views

How to set null foreign key with entity framework 4.3.1

I'm in trouble when I remove a gallery of a post by setting although I'm sometimes accepts null null when I perform debugging, but retreat when the break point, it is not the null value how can I ...
0
votes
1answer
37 views

Drupal 7: Hooks for entity references

Is it possible to hook on changes of entity references? Let's say I have a <- b and b <- x -> a. when a <- b changes to d <- b I want also b <- x -> a to change to b <- x -> ...
0
votes
0answers
35 views

How to map same type items in model class with entity framework

I have a model class named Product and i want to relate one product to another. I could't find a proper entity framework solution. I tried every fluent api codes but no luck. I'm stuck here. Here is ...
1
vote
0answers
89 views

spring + JPA: “Extend” entity classes at load-time from configuration

In my small project I have 3 entity classes. These classes should be "extendable" by the end user by configuration (eg. human readable text based, probably xml). With extendable I mean adding fields ...
0
votes
1answer
106 views

Can weak entity have multiple identifying strong entities?

Can a weak entity in databases have multiple identifying strong entities? The primary key for the weak entity would be the summation of the primary keys of the identifying keys (which exist as ...
0
votes
0answers
43 views

Entity framework,OptimisticConcurrencyException, Composite primary key includes identity column

I have create a simple table which has composite primary key . Primary key includes identity column. CREATE TABLE dbo.[MyOrder] ( order_id INT identity(1,1) Not Null ,orderDate DATETIME ...
0
votes
1answer
75 views

BLtoolkit association

i have this entity: namespace Entities.dbo { [TableName("tbl_question")] public class Question : AbstractEntity { [MapField("c_from")] [Association(CanBeNull = false, ...
0
votes
0answers
67 views

Drupal - Filtering references/entities in views block

I am having some difficulty on a project. I created a content type (Banner) and setup the Flexslider module to display a series of rotating slides. I created a view block and everything is working ...
0
votes
1answer
45 views

Predefined and custom items

I have the following piece of my DB: project (id, name, color, ...) unit (id, name, width, height, ...) each project consists of one or more units Each unit belongs to one project (1:N ...
1
vote
0answers
55 views

Entity Framework generation generates nothing

I created a database (called Data1) in sql server 2008 using sa account, and then a table (called Table1) in Data1. However, after i have used the ADO.NET Entity Data Model to generate entity from ...
1
vote
1answer
380 views

Setting up databind for a listview using c#

I'm fairly new to using entity framework and Linq. I have a ListView in a webform that I want to populate when an "area" is chosen from the dropdownlist at the top of the page. The data will be based ...
-2
votes
1answer
141 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
2answers
126 views

entity framework adding the contents of one data table to another one in the same database

How do I add the records of one data table to another with the entity framework? With data sets its like: private void sourceTabletransfer() { foreach (DataRow sourceTableRow in ...
0
votes
0answers
119 views

Access parent elements from Partial View

I need to retrieve the value in a hidden field (like Parent Id) in the parent view from a partial view. I searched everywhere but people seem to be doing it the other way around (access partial view ...
0
votes
0answers
192 views

Error when installing Entity Framework on VS2012 Nuget

When I try to install the entity framework NuGet package I keep getting an error about not being able to add a reference to System.Data.Entity which from what I understand contains the older ...
0
votes
1answer
97 views

MVC3 and EF5: Including Child and GrandChild entities in the View

To make things simple, I have 3 entities (one to many, left to right): COURSE -> MODULE -> CHAPTER A course can have multiple modules and a module can have multiple chapters. All I have in the ...
0
votes
2answers
212 views

EJB with standalone client ignores persistence.xml (?)

Please help, this is driving me crazy. I've been researching this for hours, and couldn't find an example that matches my situation. I'm writing a very simple Java EE App which authenticates users ...
3
votes
1answer
63 views

EF5: Unused and unknown column causes problems

Ok, so I have 2 entities: Course and Industry The industry entity is just a reference table which lists all available Industries that can be tagged to a course, to categorizing them. I put in a ...
2
votes
1answer
92 views

MVC3, Razor and EF5: Child properties not displayed

Ok, so I have a Course entity which has a many to one or zero relationship with the Industry entity. This means that a course can have a industry specified or not, for classification purposes. I ...
0
votes
1answer
110 views

Order by date date with linq and entity framework

I have this code: List<jogo> lista_realizados = tt.jogo.Where(c => c.activo == 1 && c.progresso == 2 && ...
1
vote
1answer
50 views

Database Design: One set of tables for each entity type or a generic set for all entity types

My company organizes a gourmet festival yearly. The festival has many events running during its duration. I am tasked with designing the festival website with a CMS (Content Management System). There ...
0
votes
0answers
24 views

Preventing Only One EF property from being set without throwing exception

my environement is VS2012, C#, partial void OnAmountChanging(decimal value) { if (value < 0) { throw new ArgumentException(); } } I want to prevent negative values for only ...
0
votes
1answer
43 views

Can I use one entity for mulitple datasources in Solr?

I want to import mutiple sharding databases into one entity in Solr. The sharding databases have the same scheme. Is it possible? Thanks.

1 3 4 5 6 7 46