Need to post more than 10 data using wcf services.I am getting a datatable from c# code.How to insert a datatable in a table using stored procedure ?
    public static DataTable Get_JobTypeList() { 
       return SqlHelper.ExecuteDataset(connection, CommandType.StoredProcedure, "JMPS_GET_Jobs_Type").Tables[0];
 }
 
     
     
    