Can any of you show me how to complete the following tasks?
MasterTable masterTable = new MasterTable();
masterTable.Column1 = "Column 1 Value";
masterTable.Column2 = 111;
DataContext myDataContext = new DataContext("<<ConnectionStrin>>");
myDataContext.MasterTables.InsertOnSubmit(masterTable);
myDataContext.SubmitChanges();
Yours faithfully
source
share