Are there any attribute field to skip it by OrmLite?
Something like:
public int SomeField { get; set; }
[SkipItByOrmLite]
public MyEnumType SomeEnumField { get { return (SomeEnumType)
SomeField; } set { SomeField = value; } }
On Feb 4, 1:51 pm, Demis Bellot <
demis.bel...@gmail.com> wrote:
> We don't support that behaviour out of the box by default - just make the
> property on your POCO an int.
>