Home  >  Article  >  Backend Development  >  szq.orm.sql update instructions

szq.orm.sql update instructions

PHP中文网
PHP中文网Original
2017-06-17 16:27:371281browse

添加query扩展、分页扩展

var list = db.Query().OrderBy(s => s.ID).ThenBy(s => s.ParamValue).Take(10).ToPageResult(0);

var sum = db.Query().Sum(s => s.ID);

var avg = db.Query().Average(s => s.ID);

var count = db.Query().Count();

 

The above is the detailed content of szq.orm.sql update instructions. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn