Top "Entity-relationship" questions

An entity-relationship model (ERM) is an abstract and conceptual representation of data, information aspects of a business domain or its process requirements.

What is different between ER Diagram and Database Schema?

What is the difference between ER Diagrams and Database Schema? MySQL Workbench has facility to draw ER diagrams, but the …

entity-relationship database
Difference between associative entity and associative relationship attribute?

What is the difference between an associative entity and an associative relationship attribute? In my book titled, Modern Database Management (…

database-design entity-relationship
Difference between ER diagram and EER diagram

What is the difference between ERD (Entity relationship diagram) and EERD (enhanced entity relationship diagram)?

database entity-relationship erd eer-model
How does Hibernate detect dirty state of an entity object?

Is it using some kind of byte codes modification to the original classes? Or, maybe Hibernate get the dirty state …

java hibernate orm entity-relationship identity
Implementing Zero Or One to Zero Or One relationship in EF Code first by Fluent API

I have two POCO classes: Order Class: public class Order { int id; string code; int? quotationId; //it is foreign key …

c# entity-framework ef-code-first entity-relationship fluent
Generate an E-R Diagram by reverse-engineering a database

Note: Originally this question was asked for PostgreSQL, however, the answer applies to almost any database which has a JDBC …

database diagram entity-relationship
JPA with JTA: Persist entity and merge cascaded child entities

I have a bidirectional one-to-many relationship with the following entity classes: 0 or 1 client <-> 0 or more product orders …

java jpa jpa-2.0 entity-relationship jta
2 relationships between 2 entities in ER diagram

I'm trying to draw an ER diagram describing the following: -"Department" employs "Employees" -Some "Employees" are "Special" and have …

database database-design entity-relationship database-schema
High-quality ERD generator for PostgresQL under Linux?

Background MySQL Workbench can produce appealing and high-quality ERDs such as: Research What PostgreSQL ERD tools are available that meet …

database-design postgresql entity-relationship erd
How to create an NSFetchRequest which filters Core Data objects based on attributes AND relationships?

I have a Core Data model setup like so: Blockbuster Entity To-Many relationship to DVD entities. DVD Entity title attribute (…

objective-c cocoa core-data entity-relationship