Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to develop sql query generator via Fluent interface? [closed]

i saw a article how to write a class which is a useful. the Class generates sql query via Fluent interface . But i am googling now but i can not find this excellent article. Do you know this article link :( or any other advise article or codes. Best Regards...

like image 223
loki Avatar asked Jun 06 '26 22:06

loki


1 Answers

SelectQueryBuilder is one example.

Or if you are sick of SQL you could also take a look at some ORMs such as NHibernate or EntityFramework which all have fluent interface syntaxes for querying data.

like image 76
Darin Dimitrov Avatar answered Jun 09 '26 12:06

Darin Dimitrov