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
Post a Comment