統計クエリを使用して、自分のサイトに投稿された各リクエストのプロポーザルの数を取得しようとしています。つまり、ログインしたユーザーが投稿した各リクエストのプロポーザルの数です。コードを使用してすべてのユーザーの数を取得しています
return array(
'serviceproposals' => array(self::HAS_MANY, 'Serviceproposal', 'ServiceRequestID'),
'user' => array(self::BELONGS_TO, 'Buyer', 'user_id'),
'postCount'=>array(self::STAT, 'serviceproposal', 'ServiceRequestID'),
);
データベース:
User [user_id、name、password]、
Provider [user_id、providercompany、providerdetails]、
Buyer [user_id、contactinfo]、
ServiceRequest [ServiceRequestID、Buyer.user_id、details、date]、
ServiceProposal [ServiceProposalId、ServiceRequestID、Provider.user_id、 services、propsal_rate]
すべての提案が招待されています...