EntityFramework with WCF - how to return EF entiti

2019-08-02 09:03发布

I have a WCF service which works, but it uses Standard ADO.net to call some stored procedures.

This is a bit messy and annoying to maintain because any stored procs i call, i have to map to DataContracts i have to create manually and then return as JSON.

I would like to convert the WCF service to return EntityFramework entities (so i dont have to keep mapping and creating datacontracts manually).

I have something like this in my method, eg:

public List<GetStuff_Result> GetStuff(string param1)
{
            ...

            StuffEntities ctx = new DataContracts.StuffEntities();

            List<GetStuff_Result> list = ctx.GetStuff(5463, "test").ToList();

            return list;
}

I have setup the stored proc in the edmx model to return a GetStuff_Result (i imported the stored procedure and used the "create complex function")

I have debugged this, and i get 2 results in the list, but when my WCF method is called via the browser, i get a message on the browser (chrome):

No data received
Unable to load the web page because the server sent no data.
Here are some suggestions:
Reload this web page later.
Error 324 (net::ERR_EMPTY_RESPONSE): The server closed the connection without sending any data. 

Can anyone tell me how to fix this or at least why it's happening?

note (1): i have also right clicked on the edmx file and disabled lazy loading.

note (2): i have setup a DbContext generator

note (3): i use response format of WebMessageFormat.Json

thanks

3条回答
叛逆
2楼-- · 2019-08-02 09:53

Actually i found a better way of doing this

I can setup the edmx code generator to use this one: http://visualstudiogallery.msdn.microsoft.com/32c4660d-7e66-4c3a-b516-584f4f72b838

Its DbContext which has WCF support (so the objects it generates already have DataMember and DataContract properties)

This allows the objects to be returned in the service without the need to map EF objects to WCF objects like what COLD TOLD has suggested.

查看更多
等我变得足够好
3楼-- · 2019-08-02 09:55

1) It always a good idea to test your application in the WCF test client before deployng it so you can see if the service call is valid

2) The reason why it happening is that it not really matter if you run direct store procedure or if you do it with EF the GetStuff_Result you still have to assign [DataMember] to every variable in your GetStuff_Result class so it will be serialized the EF stored procedure does not automatically serializes the result for you.

查看更多
叛逆
4楼-- · 2019-08-02 09:58

This problem is actually well suited for WCF Data Services (unrelated to WCF SOAP).

http://msdn.microsoft.com/en-us/library/dd744841.aspx

By default WCF Data Services will return data in XML format, however there is a request parameter that tells it to return JSON

http://blogs.msdn.com/b/writingdata_services/archive/2011/02/25/getting-json-out-of-wcf-data-services.aspx

查看更多
登录 后发表回答