Tagged Questions
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.
18
votes
8answers
12k views
EF 4.1 exception “The provider did not return a ProviderManifestToken string”
I am trying to replicate an example found on MSDN. I am using ASP.NET and EF 4.1 (CTP?). I've used NuGet to install the EntityFramework package.
I am getting this error: "The provider did not return ...
13
votes
6answers
704 views
Should Enterprise Java entities be dumb?
In our legacy JEE application, there are loads of value object (VO) classes which typically contain only getters and setters, maybe equals() and hashCode(). These are (typically) the entities to be ...
12
votes
6answers
12k views
Using the repository pattern with Entity Framework (mvc storefront)
can anyone give a helping hand, I been watching the videos for the mvc storefront and have create my own website using these techniques i.e. DDD, Repository pattern but i wish to use Entity Framework.
...
11
votes
2answers
2k views
Instantiating a context in LINQ to Entities
I've seen two different manners that programmers approach when creating an entity context in their code.
The first is like such, and you can find it all over the MSDN code examples:
public void ...
10
votes
5answers
1k views
DDD and MVC: Difference between 'Model' and 'Entity'
I'm seriously confused about the concept of the 'Model' in MVC. Most frameworks that exist today put the Model between the Controller and the database, and the Model almost acts like a database ...
10
votes
3answers
10k views
How to make Entity Framework cache some objects
I'm using Entity Framework.
In my database are stored persons and country of their origins. When I'm loading a person object I wan't to know what is the place each person originates. Is there a way ...
10
votes
8answers
2k views
LINQ or ADO.net Entity Framework - which to learn?
A bit of a clarification: I was browsing Julia Lerman's Oreilly title on Entity framework and I got mighty confused.
I have Charlie Calvert's essential LINQ, but from my 10 minute session with ...
9
votes
5answers
287 views
How is using Entity + LINQ not just essentially hard coding my queries?
So I've been developing with Entity + LINQ for a bit now and I'm really starting to wonder about best practices. I'm used to the model of "if I need to get data, reference a stored procedure". Stored ...
9
votes
2answers
2k views
Server-side validation of a REQUIRED String Property in MVC2 Entity Framework 4 does not work
I'm trying to get server-side validation of an Entity Framework String Property to work. Other server-side validation such as data type validation and required dateTime and numeric EF properties are ...
9
votes
6answers
2k views
Entities equals(), hashCode() and toString(). How to correctly implement them?
I'm implementing equals(), hashCode() and toString() of my entities using all the available fields in the bean.
I'm getting some Lazy init Exception on the frontend when I try to compare the equality ...
9
votes
2answers
932 views
Localized tables and Entity Framework
I have a scenario where I need to localized values of objects in my database.
Let's say you have an application that can create animals, if the user is english the value of the "Name" property of an ...
8
votes
1answer
477 views
Entity Framework 4 - Code First not storing inherited table separate from base table
With EF Code First CTP 4 I've created a simple project. This project consists of 2 classes, one inherited from other.
I wish to store the data in separate tables, but the default of EF 4 is to ...
8
votes
3answers
208 views
ORM - Does the Database Schema Drive the Entity Composition or Vice-Versa?
We've had quite a bit of discussion among our development group concerning whether the composition of entities should drive the database design, or should the database design drive the composition of ...
8
votes
4answers
12k views
Update entity framework objects
I transfer data between the entity framework and the business layer and user layer by using Data Transfer Objects. I do have some doubt, if I retrieve an object which is converted to a DTO, how do I ...
7
votes
1answer
302 views
Detaching Entities in EF4 - losing object graph
As other questions have noted, when you detach and re-attach an object, any child objects are gone. I thought doing this:
db.Properties.MergeOption = ...
7
votes
4answers
6k views
JPA thinks I'm deleting a detached object
So, I've got a DAO that I used to load and save my domain objects using JPA. I finally managed to get the transaction stuff working (with a bunch of help from the folks here...), now I've got another ...
6
votes
2answers
440 views
.NET Entity Framework - IEnumerable VS. IQueryable
Please see this line of code. This is an invocation of a stored procedure, which returns an ObjectResult<long?>. In order to extract the long values I added the Select:
...
6
votes
2answers
183 views
Saving domain entities changes
here's real example that will lead to my question: I have an AddCommentToArticleCommand, which has an ArticleId, comment text and email address. This command:
uses the article repository to get the ...
6
votes
2answers
385 views
DDD, Entity Framework, Aggregate Entity Behavior ( Person.AddEmail, etc)
Here's a simple example of a problem I'm running across that is not meshing with some of the ideas presented here and other places regarding DDD.
Say I have an ASP.NET MVC 3 site that ...
6
votes
7answers
1k views
Best practice to implement business logic validation - Entity Framework
I'm using Entity Framework for the first time, and I need to add business logic before inserting new objects into the db, here are the options I thought about:
Implement business logic on the ...
6
votes
2answers
2k views
FunctionImport in entity framework 4 issue
I'm using entity framework 4.
I have a stored procedure that just updates one value in my table, namely the application state ID. So I created a stored procedure that looks like this:
ALTER ...
6
votes
2answers
1k views
How to retrieve mapping table name for an entity in JPA in runtime?
Is it possible to determine the native table name of an entity?
If Table annotation is present it's easy:
entityClass.getAnnotation(Table.class).name()
But is it possible to get the table name, if ...
6
votes
2answers
933 views
Why choosing JMS for asynchronous solution ? Why is it better than a simple entity bean?
In most projects I have participated, the choice of an asynchronous solution has been a source of much discussion ...
Each time a single entity bean was enough to manage a queue: we just store a ...
6
votes
3answers
835 views
DDD: subclasses & root entities
Let's say I have the typical entity Car
class Car : Entity
{
public double MaxSpeed { get; set; }
public Color Color { get; set; }
/* ... */
}
This entity, in my domain model, would be ...
5
votes
1answer
39 views
Is there a way to modify the entity mapping configuration for doctrine outside the config file?
In my standard Symfony2-app I'm having a bunch of bundles with some entities. Some of these entities are not located in the standard folder the automapping of doctrine finds out (e.g. ...
5
votes
1answer
50 views
HTTP Range Header for Entity lists
I have resources like this
/entities # GET, POST
/entities/<id> # GET, PUT, DELETE
GET /entities gets the list of all entities.
Now I want to poll for updates. The case for a single ...
5
votes
3answers
2k views
How can I get my database to seed using Entity Framework CodeFirst?
The database is created successfully (as are the tables) but is not seeded. I have spent several hours and read tons of articles but have not been able to get it. Any suggestions?
On a side note, is ...
5
votes
3answers
166 views
Dealing with id's in entity object design
For a while I have been thinking about how to deal with objects which are assigned identifiers by the database.
A typical object representing a table entity may look like:
public class Test
{
...
5
votes
2answers
2k views
How can I get Id of inserted entity in Entity framework
I have a problem with Entity Framework in Asp.net I want to take ID value whenever I add a Object to database. How can I do this?
5
votes
1answer
356 views
How the Entity Framework Code-First mappings reflect the domain driven design?
I wish to use Entity Framework Code-first for a new project. So i decided to do some research and build some demo so that i can see how its doing. Through, i have a major problem or probably more ...
5
votes
3answers
361 views
Entity Programming tutorials?
I recently learned the basic (in the roughest of definitions) idea of Entity programming and would like to learn more. The concept I got was pretty much just a massive abstraction. Is this right? ...
5
votes
3answers
811 views
asp.net mvc input / model validation multi language
I'm quite new to asp.net mvc, and right know I'm trying to find out
a good practise to do input validation.
In the project we're going to use entity framework, where you can add
data annotations to ...
5
votes
1answer
755 views
Entity Framework 4 - prevent basic caching
If I have an entity framework 4 context, normally if I have run a query like:
db.Invoices.Where(I => whatever);
and then later run something else:
db.Invoices.Where(I => something_else);
...
5
votes
3answers
2k views
How to update only one field using Entity Framework?
Here's the table
Users
UserId
UserName
Password
EmailAddress
and the code..
public void ChangePassword(int userId, string password){
//code to update the password..
}
5
votes
2answers
925 views
OrderBy(“it.” + sort) — Hard coding in LINQ to Entity framework?
I have been trying to use dynamic LINQ to Entity in my application for specifying the OrderBy attribute at runtime. However when using the code as described in the majority of documentation:
var ...
5
votes
2answers
7k views
Disable caching in JPA (eclipselink)
I want to use JPA (eclipselink) to get data from my database. The database is changed by a number of other sources and I therefore want to go back to the database for every find I execute. I have read ...
5
votes
3answers
4k views
What are the HTML entities for up and down triangles?
I've found the outlined versions, but I want the solid ones.
Does anyone know these entities?
5
votes
3answers
512 views
long vs Guid for the Id (Entity), what are the pros and cons
I am doing a web-application on asp.net mvc and I'm choosing between the long and Guid data type for my entities, but I don't know which one is better. Some say that long is much faster. Guid also ...
5
votes
6answers
449 views
Are there patterns for model / entity classes
What is the best approach to take when you are pulling model objects from multiple datasources?
For example I have an application has has some data stored in a mySQL database using hibernate. What ...
5
votes
5answers
1k views
How-to XHTML 1.1 validate an ampersand without escaping it?
My issue is the following. I have a XHTML 1.1 page that has a form and input fields. One of the input fields contains a value which is an URI. This URI contains key-value pairs with ampersand (&) ...
5
votes
1answer
483 views
Loading partial entities with Linq to Entities
I am trying to load a partial entity with Linq to Entities:
Dim contacts = From c In My.Context.Contacts _
Select New Contact With { _
.ContactId = c.ContactId, _
.Name = ...
5
votes
3answers
5k views
Data reader is incompatible… member does not have corresponding column in data reader
Using VS 2008, SQL Server 2008 and WPF 3.5, I've made some changes to my schema and updated the model. It compiles and runs fine, until the client app calls for a specific entity and I get the ...
5
votes
3answers
3k views
Multiple Versions of SQL Server using Entity Framework in a single ASP.NET application
I am using the Entity Framework in a web application that utilizes SQL server 2000, 2005, and 2008. When I create a new EDMX file using anything other than 2008 (version of the first edmx created) I ...
5
votes
1answer
3k views
Using a stored procedure in entity framework, how do I get the the entity to have its navigation properties populated?
Entity framework is cripplingly slow so I tried using a stored procedure but I ran into this problem.
Entity Framework allows you to define a stored procedure that produces an entity. However my ...
5
votes
3answers
3k views
JPA, How to use the same class (entity) to map different tables?
I have two tables: Ta and Tb. They have exactly the same table structure but different table names.
I try to create one entity class to map the table structures. Some of my common application ...
5
votes
5answers
7k views
XML Entity for “/”?
So I'm writing some XML generating code, and found that the following attribute value was screwing up the XML formatting:
"Jim/Bob"
So I looked into the XML Entities used as escape sequences and ...
4
votes
1answer
77 views
what to use, managed beans (backing beans) or entity beans?
I see a lot of examples marking beans as entity beans (@Entity) & named beans (CDI), so as to avoid creating 2 classes (managed bean & entity bean) and also to make use of Bean Validation so ...
4
votes
2answers
94 views
On Symfony2 with Doctrine2, does Object = Entity?
Let's say I have a User class :
$user = new User(1);
$user->setName('Bob'); // save "bob" to database with ID 1
$user->setGender('Male'); // save "male" to database with ID 1
echo ...
4
votes
4answers
129 views
Base entity class. NHibernate
Would it be a good practice to implement entity base class like that:
[Serializable]
public abstract class Entity<T> : IComparable<Entity<T>>, IFormattable
{
public abstract ...
4
votes
1answer
90 views
Dynamic SQL Query Entity Framework
I searched though many posts on stack overflow to get me an answer but I am not clear yet. I am just looking for some simple way to build dynamic queries. I was able to do simple queries involving ...