c# - View Column Types Not Supported - Entity Framework -


update: ticket system.data.sqlite.org. link

i have view similar in sqlite database

select * (     select * (         select fc.filtercommandid, fc.procedureid, 1 isdynamic,                 substr(fc.datatype, 1, 20) || fc.sequence filter, fc.objectname          ((filtercommands fc inner join dynamicfiltercommands dfc               on fc.filtercommandid = dfc.filtercommandid)          inner join dynamicfiltercommandfields dfcf               on dfc.dynamicfiltercommandid = dfcf.dynamicfiltercommandid)          inner join procedurefilterkeys pfk on fc.procedureid = pfk.procedureid          group fc.filtercommandid, fc.procedureid, 1,                   substr(fc.datatype, 1, 20) || fc.sequence, fc.objectname         order fc.sortorder    ) sq     union     select fc.filtercommandid, fc.procedureid, 0, substr(fc.datatype, 1, 20) || fc.sequence,            null    filtercommands fc inner join staticfiltercommands sfc          on fc.filtercommandid = sfc.filtercommandid ) 

the problem having mapping columns in ef. getting error code 6005 (the data type '' not supported target entity framework version) several of columns. appears affect literal values provided in view (1 isdynamic, instance), , values taken directly tables (fc.objectname, although provided value of null second part of union query)

this results in columns not being mapped view. want view read only, not worried updating. columns available application.

has experienced issue, or have ideas on fixing?


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -