Is there a way to use Entity Framework with mysql and php?

I want to know if there is a way to use Entity Framework with mysql and php . Any connector or special program is required. Could you provide me some reading links?

+4
source share
1 answer

Entity Framework is ORM for .NET, I am not a "port" for php or something like that, and even then I doubt that it will be better than the existing ORM framework for PHP.

If you want to use ORM with PHP, you have many options, you should read a little about alternatives and choose ORM.

Personally, I use the Doctrine structure http://www.doctrine-project.org/

+1
source

All Articles