Reputation: 93
I want to know that is there any way to use Entity Framework
with mysql
and php
.Is any connector or special program needed.
Could you please introduce me some references to read?
Upvotes: 4
Views: 3204
Reputation: 104
Entity Framework is a ORM for .NET, i't isn't a "port" to php or anything like that, and even in that case, i doubt it would be better than current ORM frameworks for PHP.
If you want to use an ORM with PHP, then you have a lot of options, you should read a bit about the alternatives and choose an ORM.
Personally, I use Doctrine framework http://www.doctrine-project.org/
Upvotes: 1