使用linq查询语法,查询商品名称为”鲜花“的商品,并按价格降序排列()A.from p inProducts...
A.from p inProducts select p where p.pdtName=”鲜花”orderby price descending select p
B.from p inProducts select p where p.pdtName=”鲜花”orderby price ascending select p
C.from p inProducts select p where p.pdtName=”鲜花”orderby price select p
D.from p inProducts select p where p.pdtName=”鲜花”groupby price ascending select p