Hi,
I have a table, in which I alter the table and added two more columns from SQL. Now, the scenario is I want to call that column in my DLL files. But I am unable to add that. Please see my code of DLL file in which the columns is there.
private DataTable ToDataTable(List<Applicant> items)
{
var tb = new DataTable(typeof(LoanApplication).Name);
tb.Columns.Add("Job Code", typeof(string));
tb.Columns.Add("Date Of Application", typeof(string));
tb.Columns.Add("Position", typeof(string));
tb.Columns.Add("Location", typeof(string));
tb.Columns.Add("Business Unit", typeof(string));
tb.Columns.Add("First Name", typeof(string));
tb.Columns.Add("Last Name", typeof(string));
tb.Columns.Add("Contact Number", typeof(string));
tb.Columns.Add("e-mail", typeof(strin ...
Go to the complete details ...