I have a class which is designed to take a collection of any type of object and create an export (e.g. Excel spreadsheet) of it. I can supply column names and widths as I choose:
Here is a summary of the class:
public class ObjectExporter
{
public string Export<T>(IEnumerable<T> objects, IEnumerable<ColumnDefinition> columnDefinitions)
{
//Iterate through list of ColumnDefinitions.
//Output value of the property in each object...
//...whose name is equal to the PropertyName of the current ColumnDefinition
}
}
Here is the ColumnDefinition class:
public class ColumnDefinition {
public string ColumnName { get; set; }
public string PropertyName { get; set; }
public int Width { get; set; }
public ColumnDefinition(string columnName, string propertyName, int width)
{
ColumnName = columnName;
PropertyName = propertyName;
Width = width;
}
}
And here's an example of usage:
private void TestObjectExporter()
{
ObjectExporter objectExporter = new ObjectExporter();
//Note that the following variable changeRequests is a collection of anonymous type
var changeRequests = ChangeRequestRepository.All.Take(5).Select(x => new { x.ChangeRequested, x.DateCreated, x.CreatedBy.Username });
Response.Write(objectExporter.Export(changeRequests, new List<ColumnDefinition>()
{
new ColumnDefinition("Change Requested", "ChangeRequested", 12),
new ColumnDefinition("Date Created", "DateCreated", 12),
new ColumnDefinition("Created By", "Username", 12)
}));
}
It is critical that ObjectExporter can work with collections of anonymous types. I would like to amend the ObjectExporter and ColumnDefinition classes to use strongly-typed syntax like the following (note how the property names are specified):
Response.Write(objectExporter.Export(changeRequests, new List<ColumnDefinition>()
{
new ColumnDefinition("Change Requested", x => x.ChangeRequested, 12),
new ColumnDefinition("Date Created", x => x.DateCreated, 12),
new ColumnDefinition("Created By", x => x.Username, 12)
}));
I believe the way to do this would be to create a ColumnDefinition<T> class. However, I cannot find a way to get the compiler to infer that T being used in the IEnumerable<ColumnDefinition<T>> parameter is the same as is being used in the IEnumerable<T> parameter. This means that I cannot use the class with collections of anonymous types anymore because I cannot explicitly specify the generic type arguments.
Can anyone work out a way to do this?
ColumnDefinition<T>– CodesInChaos Jun 4 '11 at 10:17