예제 #1
0
파일: dao.go 프로젝트: goatcms/goat-core
// FindAll obtain all articles from database
func (dao *BaseDAO) FindAll(tx db.TX) (*sqlx.Rows, error) {
	return tx.Queryx(dao.Table.selectSQL)
}