I\'m trying to manually build a WCF Data Service using a POCO data model and I cannot figure out how to properly expose enum values. Assuming a simple model lik
Enums are currently not supported in WCF Data Services (the OData protocol doesn't support them either).
The typical workaround is to use string and constant values, or integer and constant values.