Steps
1. Create datatable and give a name
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DataTable dt = new DataTable(); | |
dt.TableName = "localVehicleDetails"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach (PropertyInfo property in vehicle.GetType().GetProperties()) | |
{ | |
dt.Columns.Add(new DataColumn(property.Name, property.PropertyType)); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DataRow newRow = dt.NewRow(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach (PropertyInfo property in vehicle.GetType().GetProperties()) | |
{ | |
newRow[property.Name] = vehicle.GetType().GetProperty(property.Name).GetValue(vehicle, null); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dt.Rows.Add(newRow); |
Here some Extended Method to how to use this method
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static DataTable SetVehiclesDetails(List<VehicleDetails> vehicleDetailsList) | |
{ | |
DataTable dt = new DataTable(); | |
try | |
{ | |
dt.TableName = "localVehicleDetails"; | |
foreach (PropertyInfo property in vehicleDetailsList[0].GetType().GetProperties()) | |
{ | |
dt.Columns.Add(new DataColumn(property.Name, property.PropertyType)); | |
} | |
foreach (var vehicle in vehicleDetailsList) | |
{ | |
DataRow newRow = dt.NewRow(); | |
foreach (PropertyInfo property in vehicle.GetType().GetProperties()) | |
{ | |
newRow[property.Name] = vehicle.GetType().GetProperty(property.Name).GetValue(vehicle, null); | |
} | |
dt.Rows.Add(newRow); | |
} | |
return dt; | |
} | |
catch (Exception ex) | |
{ | |
Console.WriteLine(ex.ToString()); | |
return null; | |
} | |
} |