Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ORM for PHP like .NET Entity Framework [closed]

I'm a .NET developer and new in PHP. I want to know, is there a ORM for PHP like the Entity Framework in the Microsoft .NET Framework?

Are there any utility applications to make working with data faster and easier?

like image 225
Jalal Avatar asked Apr 03 '11 21:04

Jalal


2 Answers

A good alternative that implements a modern data persistence approach in PHP can be found in Agile Data. It used to be part of Agile Toolkit (http://www.agiletoolkit.org), but now it's refactored into a stand-alone framework.

like image 34
romaninsh Avatar answered Oct 03 '22 05:10

romaninsh


I'd recommend you take a look at Doctrine ORM. Doctrine can generate your table to PHP class mappings using YAML, which is similar to NHibernate's mappings using XML. Doctrine also provides command line tools to rebuild aspects of your data layer based on changes to either your schema, the models themselves or the database tables you're abstracting over.

I've only really looked at NHibernate, not used it. So I wouldn't claim to know precisely how well the two ORMs approaches cross-over; I'm sure a quick glance through their documentation would help you reach a better conclusion.

like image 185
Evan Larsen Avatar answered Oct 03 '22 05:10

Evan Larsen