单项选择题

使用linq查询语法,查询商品名称为”鲜花“的商品,并按价格升序排列()

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 select p
C.from p inProducts select p where p.pdtName=”鲜花”group by price descending select p
D.from p inProducts select p where p.pdtName=”鲜花”select p