0
votes
1answer
60 views

Relationship between entity and relation in ER model and relational model?

Can I set a relation between an entity and a many to many relationship on ER model? If so, how do you represent it? I read ER data model (connecting 2 relations) this but it just speaks about ...
1
vote
2answers
82 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 ...
0
votes
2answers
85 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
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
54 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
2answers
88 views

update Entity Model Framework dynamically

I want to update ADO.Net Entity Data Model programmatically, so that the EDM is getting the newest version of the database (new tables, values etc.). Once a database table is added or altered the ...
0
votes
0answers
51 views

Entity Attribute Value Model and System's Schema

Database Schema Dears, Please click on the link above to see the image of the database schema that i need help with today. The scenario is that we have Product categories (wmu_pns_categories) and ...
0
votes
0answers
43 views

The Chess Tournament database trouble Step 1: Entity -Relational Model (I need to know if I'm right or wrong))

I'm now here, because I'm studying database theory and I've making exercises; but I have doubts about my process and final solution.I need help to get a clearly judgement because I don't know if I'm ...
0
votes
0answers
46 views

Cloning an entity-graph with dumb model

I would like to get a better feel of how to overcome the deficiencies of the dumb-model approach that both Symfony2 and Doctrine utilize. Suppose a filesystem-model: Directory and File, the latter ...
1
vote
1answer
265 views

ADO.Net Entity Model (edmx) vs Entity Framework(v4.0 etc)

What are the benefits of using ADO.Net Entity Model and EF? Can we use both of them together in a project. I came across an example where, the user had used both edmx and ef for his application. I am ...
0
votes
1answer
37 views

Facebook Graph ERM

one short question: is there any Entity-Relationship-Model of all the data that Facebook stores / provides? It would be quite useful since it would give an overview of all the entities, their ...
1
vote
1answer
131 views

How to store the modifier user in a Symfony 2 entity

I would like to have entities log the user (preferably his ID) that has most recently modified an entity. I think a pretty entity has a getModifier() method but has no setModifier() since that is ...
-1
votes
1answer
202 views

Sharing same (.edmx model) in multiple projects

I have created a database and converted the same in edmx/model in one of my ASP.NET sample projects. Now I am creating another project in which I want to use the same .edmx/model. I try to copy the ...
1
vote
1answer
123 views

Entity versus Model

I was tidying up some classes in my com.business.model package and realised every one of them was either directly annotated @Entity or was attached to one (I'm using Morphia). It occurred to me that ...
0
votes
0answers
9 views

locate entity in edmx designer

hi is there a way to locate an entity in the entity framework edmx model designer? If an error happened in the designer, if I click on the error message, the entity in concern, is focused, seems there ...
1
vote
1answer
127 views

.NET Data Model is shown as XML and not as Diagram

That is. I format my computer and install the entire enviroment again, but I can't see the data model diagram. I mean, I open the data model (edmx file) and I see all the DB tables and DB information ...
1
vote
2answers
61 views

Create an Updatable Model - Entity Framework

I just want to know if there's a way on how to create an Updatable model. Right now, I have to create procedures for insert, update, and delete for all of the tables in my model. This is very tedious ...
0
votes
0answers
225 views

Magento - Overriding Core Resource Model Entity

According to this tutorial I tried to override Model Entity in Magento 1.5.1.0 and overriding was successful, but function called there not - parameters was not passed to the function and there was an ...
0
votes
1answer
4k views

The data reader is incompatible with the specified… A member of the type, 'Finalised', does not have a corresponding column in the data reader

I have added a column in my Sql Server Db then in VS i updated model from database, there a template auto generated some code. The code compiled fine, but when i try access a the data base, the ...
0
votes
2answers
550 views

Symfony2: Best practise for large forms

I going to set up some large forms with up to 100 fields. Now my question is if there is some best practise about handling such forms. Especially: Entity relations Form object it self Does ...
0
votes
2answers
614 views

EF 4.1 Code First Error - IDENTITY_INSERT is set to OFF

I am very new to EF 4.1. I am getting the error in my Code First development in EF 4.1. "Cannot insert explicit value for identity column in table 'table' when IDENTITY_INSERT is set to OFF." I ...
1
vote
1answer
130 views

Memory-usage of Hibernate's cascade=REMOVE

I have a complex entity model with several mapped collections of the following kind: public class RoleDAO extends AbstractEntity { // ... public static final String PROPERTY_ROLE = "role"; ...
0
votes
2answers
557 views

MVC Entity Framework adding a int[] array list of categories to the view model

I'm trying to add a int[] array list of categories to the view SelectedCategories but getting the following error: base {System.SystemException} = {"LINQ to Entities does not recognize the method ...
0
votes
1answer
437 views

reference model variable to global variable value in .net mvc3

with curiosity... i am seeking for a temporary solution that will lead to an expansions of a system side controller. i a mvc3.net razor based project with 100+ of class file all of the class file ...
0
votes
1answer
449 views

what is difference between a Model and an Entity

I am confused to understand what is the meaning of this words: Entity, Model, DataModel, ViewModel Can any body help me to understanding them please? Thank you all.
0
votes
2answers
70 views

Data base model - CRUD on the same ENTITY by 2 service interfaces

My application Model is having a particular Entity and i'm going to apply CRUD on that same Entity using 2 different service interfaces, At the same time those 2 interfaces will work on the DB model ...
1
vote
1answer
953 views

CoreData: 'NSInternalInconsistencyException', reason: '+entityForName: could not locate an entity named 'DocumentLocations' in this model.'

I've suddenly been tripped up by a bizarre issue. I have a rather extensive CoreData data model, and I've copied it (and the project containing it) over to a new project for a prototype that I'm ...
1
vote
0answers
85 views

Generate correct model from database containing pre-existing table per hierarchy inheritance

My very first Q. on StackOverflow: I have a database originally generated using code first in Entity Framework 4.1. Another team and the DBA have asked that we move to database-first design for a ...
0
votes
1answer
85 views

Entity Framework model editor association lines incorrectly displayed

I often end up with the associations lines in my .edmx model editor being "messed up". Normaly, my relations end are directly on the entities, but sometimes when I re-open my .edmx file, most of them ...
2
votes
1answer
661 views

Returning IList as a REST API using Linq!

I am working with REST (using WCF) from past 2 years but new to Entity Model & Linq, however have used nHibernate. I made a simple service with folloiwng :- NorthwindModel [A data model having ...
0
votes
1answer
532 views

Hiding columns values for few records in the grid depending on their role type: MVC3

**I am trying to create a view which has a grid View layout, I am using is:** @model IEnumerable<VC.MC.ReportalWeb.UI.Users> @using myspace @{ ViewBag.Title = "Users"; var grid = new ...
1
vote
1answer
1k views

Core data iOS : “+entityForName: could not locate an entity named 'Dogs' in this model.”

A little question regarding Core data models. Here is why I'm posting : "+entityForName: could not locate an entity named 'Dogs' in this model." What I wanna do : I wanna create an app that will ...
3
votes
2answers
2k views

MVC: Are Models and Entity objects separate concepts?

I asked here a while ago for some help in understanding MVC, since I'm very new to the topic. I thought I had a decent understanding of it, and this is documented in a blog post I wrote recently on ...
2
votes
1answer
2k views

I cannot find template ADO.NET Entity Data Model in VS2010

Greetings, In VS2010, I cannot find the template ADO.NET Entity Data Model from the Data section. I was doing: 1. create a silverlight(version 4th) project with a WebSite 2. right click the web ...
1
vote
1answer
542 views

.NET/MVC2 data caching using Entity Data Models

I am having a strange caching problem and I believe it might be related to the fact that I am using a Entity Data Model as my data source. The problem is that I can update the database directly and ...
1
vote
1answer
178 views

ASP.Net MVC 2 - Model Coupling with Repository

Referring to this question, let's say we have the following scenario - A model class User that implements IUser [MetadataType(typeof(IUser))] public class User : IUser And a repository that ...
19
votes
5answers
3k 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 ...
1
vote
2answers
78 views

App Engine: how would you… snapshotting entities

Let's say you have two kinds, Message and Contact, related by a db.ListProperty of keys on Message. A user creates a message, adds some contacts as recipients, and emails the message. Later, the ...
6
votes
6answers
963 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 ...
0
votes
1answer
459 views

devart dotConnect MySQL

I've been evaluating MindScape Lightspeed for the purpose of Model creation. So far I am satisfied. I was further looking for OOTB (actually some professional quality code) providers for MySQL for ...
2
votes
2answers
4k views

ObjectQuery, passing datetime in Where clause filter

How to pass in Date Time value here? ObjectQuery<Item> _Query = ItemEntities.CreateQuery<Item>("Item"); _Query = _Query.Where("(it.StartDate >= 11/4/2009 5:06:08 PM)"); my sample ...
6
votes
5answers
13k 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 ...
0
votes
2answers
198 views

Retrieving dependent/parent from within domain entity method

How would one go about retrieving a dependent/parent object from an entity. $person->getAddress(); This should retrieve the Address object for that person from the database and return it as an ...
0
votes
1answer
303 views

N:M relation and deleting records

I have three tables: Context, Component and ComponentContext. The ComponentContext table links the Component and Context into an N:M relationship. I'm working on a C# project which imports a bunch of ...
0
votes
2answers
1k views

Does this Entity Repository Service example fit into Domain-Driven Design?

I would like to know if you find the following pattern meaningful in domain driven design. The domain layer consists of model and repository. The application layer consists of services that handles ...
0
votes
2answers
209 views

Recommendations for good book and/or online documentation for Entity Relationship Diagrams [closed]

The wiki page on ERD has a lot of useful information, but I was wondering if you had any recommendations for good books and/or online documentation for a more in-depth description of ERD's? Thanks.