Created
February 13, 2016 19:59
-
-
Save Jtorrecilla/7df3999011c3e589a88f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| static IEnumerable<string> GetColumns(Type type) | |
| { | |
| return type.GetProperties().Where(prop => !prop.PropertyType.IsGenericType && | |
| (prop.PropertyType.IsPrimitive || prop.PropertyType.Namespace.StartsWith("System")) | |
| ) | |
| .Select(prop => prop.Name); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment