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

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -

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

javascript - Restarting Supervisor and effect on FlaskSocketIO -