Possible Duplicate:
How do I map a char property using the Entity Framework 4.1 “code only” fluent API?
I have some code that requires I use a char in c#.
When I store the data in the database as char(1) and return it via Entity Framework, I get a string back.
I'm currently converting it simply by doing string[0]. Sorry if this is a bit of a noob question but is there a more concrete way of doing this?