Hi Guys, I have few doubts..Please do help me out My prob is: 1) I want few records in Table based on crtiteria but its not working... here is my code: Code Snippet Table objConrtolTable = obProductsFacade.GetTableByID(objProducts.ID) as Table; The obProductsFacade.GetTableByID has this code: Code Snippet var result = from product in objLinqObjectDataContext.Products where (product.ID == _id) select product; return result; I want few records and put it into the table object and then insert records
Read More...