public static void Main()
var table = new DataTable();
table.Columns.Add("IntColumn", typeof (int));
table.Columns.Add("StringColumn", typeof (string));
table.Rows.Add(1, "Fizz");
var entity = table.Rows[0].ToExpandoObject();
Console.WriteLine(entity.IntColumn);
Console.WriteLine(entity.StringColumn);