I am trying to get a simple join query from 2 tables , they have no relationship , so far i got this code but there is an error that i dont get it , please help
var query =
from p in db.Productos
from s in db.Stocks
where p.Nombre == "Suaje" && p.TipoProducto == tipo
where p.RecID == s.IDProducto
select new { s.Largo, s.Ancho };