We normally use these statements to add anew record to database.
MyDataContext.InsertOnSubmit(AnObject);
MyDataContext.SubmitChanges();
Other than using stored procedure(can return a value by "Return / Output"), is there a way to return a value indicating, operation was successful ? probably, Linq own methods / functions
Any idea, Thanks