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.
2
votes
1answer
40 views
Clone an entity before form bind
With Symfony2, I need to save an entity before use $form->bind() to compare the old and new one before flush.
I tried some functions :
$command = $repository->findCommandProductsByCommand( $id );
...
0
votes
0answers
11 views
Translating foreign key to object references in SpringJDBC
I am learning SpringJDBC and came across this post. Everything is clear except translating entities with foreign keys. For example, if now I have one more Course entity, with a foreign key to Person ...
1
vote
1answer
59 views
MS Dynamics CRM. Get users who current record shared with
I have a entity record which is shared with or more users. I would like to unshare this record when Deactivate it. I want to do that in Plugin. But I can't understand how to get all users from sharing ...
0
votes
0answers
32 views
How to persist a Map<Enum, Entity> with JPA 2
I got a problem with how to annotate with JPA 2 when trying to persist a Map where the key is an enum. I find quite a number of somewhat similar questions asked before, but none quite have the same ...
1
vote
3answers
47 views
find max value of columns using where method
Heres another problem :
public int GetMaxValue(string listTask , int listActivity)
{
int maxQNo = Convert.ToInt32(context.questions.Max(q => q.QuestionNo).Where(q.TaskName.Contains(listTask) ...
0
votes
1answer
48 views
entity framework Where method
i need some help in this , how do i write a where clause statement where i want to retrieve record based on 2 columns :
This is how i am trying to write in code :
public IList<Model.question> ...
0
votes
1answer
29 views
Play Framework Entities connection
this is a beginner question, I'm trying to work with play framework and I have a question I can't seem to figure out
Lets say I have classes A and B defined as
package models;
@Entity
public class A ...
0
votes
1answer
28 views
Not able to insert using entity manager ORA00904
I am very new to the concept of EJB's. I am trying to insert values from the front end into database using Entity classes but every time I do that, i am getting this error:
...
0
votes
1answer
40 views
How to deal with calculated entity attribute
Let's say there is an entity called Staff.
It has a number of persistent attributes, such as:
- Name
- Experience
- Age
I want to create a "virtual" attribute, that is based on the Experience and ...
1
vote
1answer
39 views
How to fetch all to many items from a specific Core Data parent entity ID
I am pretty new to this and assume I am missing something very simple, I have tried this site and anywhere I could search but found no straightforward answer.
My situation..
My model can have many ...
0
votes
0answers
44 views
Doctrine2 Symfony2 entitymanager flush error [closed]
I have problem when i try to flush in controller.
I got this error :
Notice: Object of class
EntityManager51a8c94c43fe1_546a8d27f194334ee012bfe64f629947b07e4919__CG__\Doctrine\ORM\EntityManager
...
1
vote
1answer
32 views
There is already an open DataReader associated
Hi i am making this autocomplete search bar wich contains title, description and category_id but i need the category name wich is in another table so i take out the category id from my ads table and ...
0
votes
2answers
42 views
how use entity key (or another object) for javascript call from html
How can I create a button that in his onClick event calls a function with an object? An entity key in my special case?
I populate a table of all objects in my database and want to add a delete ...
2
votes
2answers
45 views
In Entity Framework 4.0 “Nested transactions are not supported” error is displayed?
An error occurred while starting a transaction on the provider connection. See the inner exception for details. "Nested transactions are not supported."
Inner Exception
public bool Insert(myModel ...
1
vote
0answers
31 views
c# Get database's columns max value with reference to another column
I have a database table name question , in that table , there is many columns but i would like to focus on this 3 columns : Activity , Task and QuestionNO
The problem is that i want to get the max ...
1
vote
1answer
29 views
Properties of an entity in a different entity
I'm using FOSUserBundle to manage the users and the security. I also have a different table that carries all the metadata of the user, like the profile picture, facebook id, etc.
I need to tell ...
1
vote
2answers
46 views
JavaEE deployments: How to keep data after entity/database structure changes?
I have a running JavaEE web application (WAR) whose Entities will be changed in the next version of the application. This also means structure changes in the underlying database of course.
What is ...
0
votes
0answers
8 views
Entity framework tries to resolve mapping through other project
Here is my problem:
I have solution with three projects:
FirstEntitySet(Generated from Table1)
SecondEntitySet(Generated from same Table1)
Console Test Application
Now, in my FirstEntitySet ...
1
vote
0answers
14 views
The specified named connection is either not found in the configuration, not intended to be used with the EntityClient provider, or not valid
I'm new in Entity Framework. I have encountered this error here ![enter image description here][1]
[1]: http://i.stack.imgur.com/rZcvf.jpg I want to make my connection String programmmatically
...
0
votes
1answer
67 views
checking if data exist in mysql using entity framework
i have a mysql database table . The tablename is Question and i have a column name questionNo under that table . i have a web form that consists of a create button and some textbox , so every time i ...
0
votes
0answers
31 views
Automation Add-In on 64 bit Machine installed Office Excel (x86) 2010 System.Data.Sqlite Entity Provider error
I have an Excel Automation Add-In written C# uses System.Data.Sqlite and Entity Framework
I want to install 64 bit machine for Microsoft Office Excel 2010 (32 bit)
Installation System.Data.Sqlite ...
0
votes
0answers
26 views
Entity Framework Transaction using two databases
Code
using (var transactionScope = new TransactionScope())
{
_configModel.InsertSettings(cfg);
_configDbUnitOfWork.Commit(); // call saveChanges on MyDbContext1 (server x.x.x.x, database1)
...
0
votes
1answer
11 views
Loop through var in object in entity framework
This is the error I am getting “foreach statement cannot operate on variables of type object because object does”
In DAL I have a function like below, this function is returning an object type items.
...
0
votes
0answers
14 views
Deploying Entity Framework Dbcontext(not MVC) Web Application with Oracle Db
I'm very new to this Entity Framework. After hearing some online videos I created a Web Application(not MVC) with EF 5.0 DbContext. It is working fine in my machine(win 7). But after deployed it in ...
0
votes
1answer
27 views
Linq multiple join on same table
how can i write this query in linq?
select * from bills as b inner join customer as c1
On b.shipperID=c1.CustomerID inner join customer c2
On b.ConsigneeID=c2.CustomerID
...
0
votes
0answers
25 views
How use left outer join in entity framwork
I want to write a query in Entity Framework like this
select t1.Id,t1.FAQAnswer,t1.FAQQuestion,t2.Comment,t2.MeetYourNeed,t2.CreatedBy
from HelpDesk.Knowledge as t1
left outer join
...
0
votes
1answer
101 views
org.hibernate.MappingException: Unknown entity SessionFactoryImpl.getEntityPersister
below is my code.. i applied Spring framework n hibernate JPA, all my code work except one function that save it.. in other code thats similiar with, Service for Makanan entity work good.. i dont know ...
2
votes
1answer
72 views
Inner workings of JPA
I really don't get it.
If I persist a new item then use it to get the autogenerated key, it fails:
class BookManagerBean {
@PersistentContext
EntityManager em;
@Override
public void ...
0
votes
0answers
40 views
C# MVC Split Table Model for View
I tried a lot of things, like overriding modelbuilder for one-to-one relationships, remove extended class, updatemodel etc. but I'm n ot sure if I follow the best practices.
I've a very simple model ...
0
votes
3answers
44 views
ORM Mapping software replacement [closed]
We have a large web application that uses multiple databases (all currently MS SQL Server 2008 R2). This application is around 7 years old and was built around the EntitySpaces framework. It's ...
0
votes
2answers
37 views
Entity Framework POCO Eager Loading children
This is my POCO entities scenario:
Manufacturer (1) has Cars (*)
One Car entity has a navigation property to a Manufacturer entity.
One Manufacturer entity has a navigation property to a Cars ...
0
votes
0answers
10 views
Best practice for abstract @MappedSuperclass @ManyToMany reference
I have the following entity classes (relavent parts only):
@Entity
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name = "SUBJECT_TYPE")
public abstract class SubjectEty ...
1
vote
0answers
37 views
Entity Data Model with edmmapping, without oracleclient
I'm using an EDM (entity framework) for oracle without an oracle client on the client.
This works fine with the following:
1) Extra configuration in the app.config
<system.data>
...
1
vote
0answers
66 views
Zend Framework 2 dynamically build form rows and columns
I've got an idea in my head, but I'm looking for the best practice to execute it with the use of Zend Framework 2. Aswell I'm using Doctrine for the models/entities.
The user can choose how many ...
1
vote
1answer
25 views
CompositeId and overrided GetHashCode() and Equals() methods
I have entity class:
[Serializable, Class(Table = "mon.tableView", Lazy = false)]
public class TableView
{
[CompositeId(1)]
[KeyProperty(2, Name = "column1", Column = "column1", ...
0
votes
1answer
21 views
Pass UserID from user session as @Column in hibernate Entity
I have a User hibernate @Entity which has a column CreatedBy. I have this user info (created by) stored in User Session.
@Entity
public User
@Column(name="CreatedBy")
public createdBy;
}
...
0
votes
0answers
14 views
Entity Framework One 'Create' view for multiple models
Here is my 'Mentees' model:
{
namespace BEMentoring.Models
{
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using ...
1
vote
1answer
24 views
Entity Framework - Version Property Name
I'm searching for getting concurrency fixed property name at runtime through ObjectContext but I don't find any property or method able to give me this information.
Is there some way in order to get ...
3
votes
1answer
41 views
What is the name (or keywords) of methodology/technique to hold ids instead of related entities in entity?
Entity hold data which mapped to data from persistent storage. Usually this is DB.
You can hold ids:
class Book {
private String title;
public String getTitleId() { return title; }
...
0
votes
2answers
44 views
Entity Framework: check if object exists and check if it has an associated object
In a many-to-many relationship between File and Category I want to check if a file exists and if so, if it has any categories (because there's a chance it may not have any) :
public bool ...
0
votes
2answers
33 views
unable to update entity
this is the method
public String changePassword(int id){
FacesContext context = FacesContext.getCurrentInstance();
try{
utx.begin();
Wuser ...
0
votes
1answer
65 views
how to call function of entity repository in form type in symfony2
i want to call function in form type class. function generate array and is written in entity repository class. using that array i will generate dynamic form field.
here is entity repository class ...
1
vote
1answer
32 views
Adding custom option at form field type 'entity'
In my form builder, using an entity choice field I can retrieve the contents of an entity by:
$builder->add('manufacturer', 'entity', array(
'class' => 'Manufacturer'....
...
1
vote
2answers
15 views
Argument Execption
Exception:
The specified named connection is either not found in the configuration, not intended to be used with the EntityClient provider, or not valid.
Method where exception happened:
/// ...
0
votes
1answer
34 views
Use of Cascade in ManyToOne relation
Is it appropriate to use Cascade in both sides of a ManyToOne association in Hibernate Entities? To make my question more concrete, let 's assume that someone has the following related Entities:
...
0
votes
1answer
23 views
JSF advantage of ManagedEntity vs UnManagedEntity
I have recently started studying JSF and have stumbled accross the following two ways to include entities into a Controller Managed bean. One by direct injection with the entity as a ManagedBean, the ...
0
votes
1answer
44 views
Objective-c. Fetching distinct values of attribute from core data
i have run into a problem that i can not solve. I have a "database" - read core data - where i have attribute that holds a value and level.
Something like that
value -------- level
55 -------------4
...
1
vote
2answers
106 views
Symfony2 Doctrine get random product from a category
I have the following database scheme:
table 'products'
id
category_id
and of course a category table, just with an id.
The data look something like that:
Products
--------------------
| id | ...
0
votes
2answers
69 views
JSF SelectOneMenu get Entity
I am trying to obtain a Customer entity from a JSF SelectOneMenu component: The classes I have are as follows:
Customer Entity
@Entity
@Table(name="CUSTOMERS")
@NamedQuery(name="Customer.findAll", ...
0
votes
1answer
30 views
How to make predicate to Entity's customized property
This question is an ongoing one for my previous question.
I want to make a predicate to filter the entity by my customized property, this is the entity class
@interface Expense : NSManagedObject
...



