Re: Function not imported in Entity Framework

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: Vikram Sah <rblucky3(at)gmail(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: Function not imported in Entity Framework
Date: 2020-02-06 15:38:06
Message-ID: d5e82674-fbe5-d6b3-67ec-5b405adbca92@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 2/6/20 1:36 AM, Vikram Sah wrote:
> Dear sir/mam,
>
> I want to integrate PostgreSQL database to entity framework in asp.net
> <http://asp.net> using database first approach. but when try to add
> function then error occurred:
>
> *Error 6046: Unable to generate function import return type of the store
> function.*

This really a question for the EntityFramework maintainers/users. Still
I did find this:

https://stackoverflow.com/questions/24161005/error-6046-unable-to-generate-function-import-return-type-of-the-store-function

>
> I have following configuration:
>
> PostgreSQL 11.6,
> npgsql v.4.0.9.0,
> EntityFramework6.Npgsql 3.2.1.1,
> in .net framework 4.5.2
>
> *My function in postgresql database is :*
>
> CREATE OR REPLACE FUNCTION dbo.EmployeeDetail ()
> RETURNS TABLE (
> emp_name VARCHAR,
> emp_Id UUID
> )
> AS $$
> BEGIN
> RETURN QUERY SELECT
> "EmployeName",
> "EmployeeID"
> FROM
> dbo.Employee;
> END; $$
>
> LANGUAGE 'plpgsql';
>
>
> Can you pls help! I did more researches but no luck.
>
>
> Thanks!
>
>
>

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Fabrízio de Royes Mello 2020-02-06 16:32:19 Re: POLL: Adding transaction status to default psql prompt
Previous Message Charles Clavadetscher 2020-02-06 14:06:27 Re: POLL: Adding transaction status to default psql prompt