I need to format output according to the type of the DataColumns in a DataTable.
Specifically, I need to map the built-in primitive types (int, string, decimal, DateTime, etc) to:
- SomeEnum.Numeric
- SomeEnum.Bool
- SomeEnum.DateTime
- SomeEnum.String
- SomeEnum.Unknown
- SomeEnum.Null
How could I do this?