i want to implement the "in" in sql in linq to sql .how can i do that ?
                
                A: 
                
                
              
            something like this?...
namespace xxx.xxx.xxxx { public class xxxx { private Entities db = new Entities();
    // List All Products
    public IQueryable<Product> GetAllProducts()
    {
        return from product in db.Products
               select product;
    }
                  sebastian_h
                   2010-08-24 07:01:01