My understanding of Linq to Sql is it will take my Linq statement and convert it into an equivalent SQL statement.
So
var products = from p in db.Product
if that's all you ever did in sql, you didn't need sprocs before!