Language Integrated Query. Now I know that the acronyms are. I have seen C# examples, but can’t really understand them. Can I use them with PHP? Can I use it along with ORM? Has any PHP MVC framework has this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
LINQ is basically a library combined with changes to a number of .Net languages that allows you to write queries against the objects in your program… This is a vast over simplification, but it treats collections of objects in a similar manner to that in which SQL treats tables… The objects within those collections are analogous with a record in a database table, and the properties of these objects are analogous to columns on a table in SQL.
The syntax is a little different to SQL, but it gets easier as you use it.
Can’t speak for PHPLinq, but if it’s as good as LINQ itself, you’re in for a treat…