code first - Mapping custom data types using Entity Framework -


i using ef 6th database first approach postgresql.

in postgres have several custom data types such as:

    create type common.weekdays_type enum    ('mon',     'tue',     'wed',     'thu',     'fri',     'sat',     'sun'); alter type common.weekdays_type 

unfortunately ef code generator can't table rows custom data type used.

here found reply 2012 saying there's no support intention add feature npgsql. there ways solve issue now?


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -