You are designing a Microsoft SQL Server 2005 Reporting Services (SSRS) report. The report uses a dataset that is based on a Data Mining Extensions (DMX) prediction query. The query forecasts the probability of purchases for buyers when specific inputs are given. Users want to select the values at runtime that might be used to forecast the probability of a purchase. You need to implement two report parameters named @buyer and @probability that will be used to control the DMX query at report runtime. Which DMX WHERE clause should you use?
A.
WHERE Buyer = @buyer AND (PredictProbability([Buyer])) > @probability
B.
WHERE (Predict([Buyer])) = @buyer AND Probability > @probability
C.
WHERE (Predict([Buyer])) = @buyer AND (PredictProbability([Buyer])) > @probability
D.
WHERE (Predict([Probability])) > @probability AND Buyer = @buyer