I need to convert the following query to linq
select * from detalle_pedido
where articuloid = 13555 and id_pedido=13
I've tried it in the following way
var querydetalle = _db.detalle_pedido.Where(dt => dt.articuloid == articu.articuloid || ped.id_pedido == idpedido);
var dtp = querydetalle.FirstOrDefault();
but I can not get the value I should get. What should I modify?