Top "Orm" questions

Object-relational mapping (ORM) is a technique for mapping object-oriented systems to relational databases.

Laravel Eloquent ORM - Many to Many Delete Pivot Table Values left over

Using Laravel, I have the following code $review = Review::find(1); $review->delete(); Review has a many to many relationship …

laravel orm many-to-many eloquent
A list of Entity Framework providers for various databases

Which providers are there and your experience using them I would like to know about all possible native .NET Framework …

.net database entity-framework orm provider
EntityManager refresh problem

I'm getting this error from my EntityManager when I call the refresh function. public void saveProduct(Product product) { entityManager.refresh(…

hibernate spring orm jpa entitymanager
JPA Query MONTH/YEAR functions

How can I write a JPA query using MONTH function just like sql query? @NamedQuery(name="querybymonth", query="select t …

java orm jpa jpql
AngularJS: Creating Objects that map to REST Resources (ORM-Style)

I'm pretty new to AngularJS, but I'm pretty unclear on how to tie it up to my Server's REST Api …

javascript web-applications orm angularjs
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
Manually specify the value of a primary key in JPA @GeneratedValue column

I'm having an Entity which has a primary key / id field like the following: @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private …

java mysql jpa orm eclipselink
define named query in orm.xml with jpa and hibernate

I'm trying to put my named queries in my orm.xml (put in META-INF with persistence.xml) but my orm.…

java hibernate orm jpa named-query
Should I enable or disable dynamic proxies with entity framework 4.1 and MVC3?

Could someone offer up some advice or point out some blogs/articles that could help with making this decision? The …

entity-framework orm entity-framework-4.1 ef-code-first dynamic-proxy
Hibernate using multiple databases

Someone know how to add a another datasource in hibernate configuration and how to configure Spring to that datasource its …

hibernate spring orm dao