Here is the sample code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
var dt = new DataTable { Columns = { new DataColumn("Id", typeof(int)), new DataColumn("Message", typeof(string)) { AllowDBNull = true }, new DataColumn("OwnMessage", typeof(string)) { AllowDBNull = true }, new DataColumn("InnerException", typeof(string)) { AllowDBNull = true }, new DataColumn("Stacktrace", typeof(string)) { AllowDBNull = true }, new DataColumn("HttpCode", typeof(string)) { AllowDBNull = true }, } }; |