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.
0
votes
1answer
8 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 ...
1
vote
0answers
22 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 ...
1
vote
1answer
24 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
23 views
ORM Mapping software replacement
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
25 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
8 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
14 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
38 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
22 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
15 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
10 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
22 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 ...
2
votes
1answer
30 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
22 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
31 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
15 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
23 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
13 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
28 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
19 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
40 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
41 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
42 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
25 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
...
0
votes
1answer
18 views
Multilingual entities with inheritance?
I need some multilingual entities in our application and I want to know what are the best practice for that.
Currently it solved with an 1:n relation, because there general information and language ...
2
votes
2answers
26 views
Convert sql to entity in query syntax
How can i convert the following query to entity framework in query syntax..
SELECT MIN(Date) StartDate, MAX(Date) EndDate, Title, Flag FROM
Holiday GROUP BY Title, Flag
Any help?
-3
votes
1answer
22 views
Entity framework using vb.net,stored proc and involve multiple tables
I have a person table with first name,last name, phoneid other details.
The phoneid is an identity column in Phonetable.
I need to add/update the person info.
First, it should check if the phone ...
0
votes
0answers
22 views
EF Code First Get FK related Values without Entity
I have following Vehicle entity
class Vehicle
{
public int Id {get; set;}
public string PlatNo {get; set;}
public int VehicleTypeId {get; set;}
}
VehicleTypeId property is a FK of ...
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
23 views
How to alter the class of a coredata entity to a subclass
I have a coredata model with a parent Entity type, and other Entities which are subclasses of the parent.
During runtime, I am first creating entities which are instances of the parent class.
Later ...
0
votes
2answers
24 views
How to get a ViewModel entity by using the name from a string value?
so say I have a ViewModel called
SampleViewModel
Which contains 3 entities called
entityOne
entityTwo
entityThree
Now I have an action in a controller action that looks a little ...
-3
votes
3answers
78 views
Using Contains method within linq's Where clause
I've got a problem with my query.
I have two simple classes. Let's say
public class A{
public List<B> MyCollection{get; set;}
}
public class B{
public string Id;
}
//I want to do something ...
-4
votes
3answers
73 views
Symfony2 “Fatal error: Class not Found”
This is NewEventController.php:
namespace Passtuff\RestBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Response;
use ...
0
votes
0answers
9 views
Doctrine - Deduplicate on Insert
I am trying to create system where upon creating a new entity and then flushing it, a check will be made to see if another row is the same, and if it is, the newly created entity becomes the existing ...
0
votes
0answers
63 views
context database.sqlQuery<type>() with dynamic parameter list
i have a problem with an sqlQuery/Exec. My Stored Procedure returns a list of entitys. But i need to append the parameterlist dynamicly.
using (MyContext db = new MyContext ())
{
...
0
votes
0answers
32 views
Calling functions on Entities from a Context in C#
I have started with model-first and generated a database, and I've created partial classes for my entities so that I can perform operations on them.
My code in the context is getting fairly long, is ...
0
votes
0answers
16 views
Java, looking for a maven plugin to list used @Entities in persistence.xml
I have a multi-module project
It contains a lot of @Entities in different modules
To avoid some deployment problems for each module in persistence.xml I need to list all @Entities that is used in ...
0
votes
1answer
27 views
Host and Connect to a .mdf database
I have a few questions regarding Entity Model Databases (.mdf). I what to know what hosting service provides support to it? I believe it would fall under Microsoft SQL Server, but would just like to ...
0
votes
0answers
44 views
JPA one entity 3 tables
I have three tables each having the same coloumns. One of them has the original measured data, the other ones have the data aggregated to minutes and hours. When loading the data in JPA I want to have ...
0
votes
1answer
16 views
Entity Framework dbset not finding added entity
I am having an issue understanding why when adding a new entity to a DbSet of ObjectContext, that entity is not found will looking it up again.
using (var db = new SmartrailDB())
{
...
1
vote
0answers
29 views
ObjectContext inside another ObjectContext
I am working on a component factory system where ObjectContexts are automatically created depending upon some configuration rules. Each time a method is called, the component factory decides where to ...
1
vote
0answers
37 views
how to group by two left joins?
I'm needing to make two left joins and sum/count data from these two left joins.
First i tried with just one left join (ValorEfetuado). This table may have data and if it has data i need to sum it.
...
0
votes
0answers
93 views
Symfony2 translate form entity property
I have a symfony2 form for edit users. My users has roles and you can select multiple roles for one user.
In my form I display the UserRoles entity:
$builder->add( 'rolesAsObject', 'entity', ...
0
votes
0answers
44 views
Drupal Display Suite Code Field Issue: How to output Tokens, or PHP $entity inline
I am attempting to get two fields to display inline.
Specifically, I need the Locator, and the Body fields to display inline.
My Locator simply states the location of a post in plain text.
i.e. ...
1
vote
2answers
82 views
symfony2 form multiple select with arraycollection
I would like to create a form to edit my users.
Users and roles connected with ManyToMany.
In UserUsers entity I have a $roles variable which is ArrayCollection:
public function __construct()
{
...
1
vote
2answers
44 views
What's an entity in entity framework?
In the tutorials im following for learning about the entity framework, they keep mentioning entities. I often see it gets used as a synonym for the dbsets<> in the database context class, but ...
0
votes
1answer
31 views
Using data mapper inside another data mapper in Java?
I'm using the data mapper pattern in Java for accessing the database. Is it OK to call a mapper inside of another mapper? As far as I'm concerned, mappers should work on their own without a dependency ...
0
votes
1answer
29 views
Why merged entities are updated on insert?
When inserting an entity, let say article:
Article::id
Article::text
Article::author -> User
The article has an author (ManyToOne)
User::id
User::name
User::created
if I fetch the user in the ...
2
votes
1answer
60 views
Entity framework DBcontext add child row
As I understand, to add a child row, you can either do
parent.Children.Add(child);
or
child.Parents= parent
Then you can do myContext.SaveChanges();
Somehow the second solution doesn't do the ...
0
votes
1answer
61 views
Entity Framework - Linq to query where value in a list
I'm using Entity Framework on .NET 3.5 and I can't for the life of me figure out how to write some Linq to traverse the following design:
Basically I am trying to figure out if a user has permission ...



