I understand I need to save boolean in SQLite as Integer, True/False as 1/0 I guess. But how is this done in the mapping file?

Do I need to write some custom mapping convention class? I've never done this before, so would be very helpful if someone could offer an example.

link|improve this question

74% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You can map it like a any other property. Conversion happens under the covers. So if your entity has something like

public virtual bool IsArchived { get; set; }

the Map file for this property would have an entry like so

Map(x => x.IsArchived);
link|improve this answer
ah.. I see. I made some other mistake which made it seem like it didn't work, but sure it does. cheers! – bretddog May 22 '11 at 20:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.