Small fixes for web deploy

This commit is contained in:
2012-12-04 14:04:29 -05:00
parent 820b766ed5
commit 0411e4c814
9 changed files with 65 additions and 27 deletions
+2 -1
View File
@@ -35,7 +35,8 @@ namespace MileageTraker.Web.Utility
// write column headers
var properties =
typeof(T).GetProperties()
.Where(p => !p.PropertyType.IsCollection());
.Where(p => !p.PropertyType.IsCollection())
.ToList();
properties.Zip(
CustomExtensions.GetNumbers(),