Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
(연관된 글이 2개 있습니다.)

Entity Framework 4.1 - CodeFirst 개체의 직렬화 시 순환 참조 해결하는 방법

우선, 순환 참조가 직렬화 시에 어떻게 발생할 수 있는지 다음의 글을 한번 읽어보시고 시작하는 것도 좋겠습니다. ^^

순환참조와 XmlSerializer
; https://www.sysnet.pe.kr/2/0/751

위의 XmlSerializer에서는 순환참조가 발생하는 경우 System.StackOverflowException 예외가 발생하지만 WCF의 경우에는 System.Runtime.Serialization.SerializationException 수준에서 끝납니다. 아마도 내부적인 threshold 값의 제약으로 스레드의 스택이 바닥나기 전에 중지되기 때문인 것 같습니다. (정확히 어떤 threshold 값에 해당하는지 아직 잘 모르겠습니다. ^^)

본론으로 들어가서, 이번에는 Entity Framework의 CodeFirst에서 순환참조가 발생하는 경우를 살펴볼 텐데요. 실제로 예제를 만들어서 재현을 하고 문제를 해결하는 식으로 진행해 보겠습니다.

우선, 예제 코드는 지난번 글에서 만들어 둔 EF + WCF 프로젝트로 만들어 두었던 것을 재사용할 텐데요, 아래의 글에서 다운로드하시면 됩니다.

Entity Framework 4.1 - Code First + WCF 서비스 시 EndpointNotFoundException 오류 - 두 번째 이야기
; https://www.sysnet.pe.kr/2/0/1085

codefirst_example.zip
; https://www.sysnet.pe.kr/bbs/DownloadAttachment.aspx?fid=613&boardid=331301885

이제, MyEntity의 목록을 반환하는 WCF 메서드를 한번 볼까요?

public MyEntity [] GetMyEntities()
{
    using (DBContext db = new DBContext())
    {
        var items = from record in db.MyEntities
                    select record;

        var list = items.ToArray();
        return list;
    }
}

짐작하시겠지만, 이렇게 반환된 MyEntity는 SubEntities 속성이 null로 되어 있습니다. 만약, 그 속성값을 채우고 싶다면 Linq 쿼리를 다음과 같이 변경해 주어야 합니다.

public MyEntity [] GetMyEntities()
{
    using (DBContext db = new DBContext())
    {
        var items = from record in db.MyEntities.Include("SubEntities")
                    select record;

        var list = items.ToArray();
        return list;
    }
}

자, 이렇게 코드를 변경하고 WCF 서비스를 사용하면 여지없이 클라이언트 측에서 다음과 같은 예외를 받게 됩니다.

Unhandled Exception: System.ServiceModel.CommunicationException: An error occurred while receiving the HTTP response to http://.../Service.svc. This could be due to the service endpoint binding not using the HTTP protocol. This could also be due to an HTTP request context being aborted by the server (possibly due to the service shutting down). See server logs for more details. ---> System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a receive. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connect ion was forcibly closed by the remote host
at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)
--- End of inner exception stack trace ---
at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.PooledStream.Read(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.Connection.SyncRead(HttpWebRequest request, Boolean userRetrievedStream, Boolean probeRead)
--- End of inner exception stack trace ---
at System.Net.HttpWebRequest.GetResponse()
at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
--- End of inner exception stack trace ---


보는 바와 같이, 클라이언트 측에서의 오류 메시지로는 저번에 다룬 DynamicProxies 직렬화 오류와 비교해서 차이가 없습니다. 다시 한번 이 오류의 정확한 원인을 알기 위해서 DataContractSerializer를 이용하여 직접 직렬화 시도를 하고 예외 메시지를 출력하도록 합니다.

public MyEntity [] GetMyEntities()
{
    ...[생략]...
    try
    {
        MemoryStream ms = new MemoryStream();
        DataContractSerializer dcs = new DataContractSerializer(typeof(MyEntity[]));
        dcs.WriteObject(ms, list);
    }
    catch (Exception ex)
    {
        System.Diagnostics.Debug.WriteLine(ex.ToString());
    }

    return list;
}

실행해 보면, 아래와 같이 순환 참조에 걸렸음을 알려주는 오류 메시지가 발견됩니다.

System.Runtime.Serialization.SerializationException: Object graph for type 'System.Collections.Generic.HashSet`1[[SubEntity, App_Code.xdcj8jsd, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]' contains cycles and cannot be serialized if reference tracking is disabled. 
    at System.Runtime.Serialization.XmlObjectSerializerWriteContext.OnHandleReference(XmlWriterDelegator xmlWriter, Object obj, Boolean canContainCyclicReference) 
    at System.Runtime.Serialization.XmlObjectSerializerWriteContext.InternalSerializeReference(XmlWriterDelegator xmlWriter, Object obj, Boolean isDeclaredType, Boolean writeXsiType, Int32 declaredTypeID, RuntimeTypeHandle declaredTypeHandle) 
    at WriteEventSourceToXml(XmlWriterDelegator , Object , XmlObjectSerializerWriteContext , ClassDataContract ) 
    at System.Runtime.Serialization.ClassDataContract.WriteXmlValue(XmlWriterDelegator xmlWriter, Object obj, XmlObjectSerializerWriteContext context) 
    ...[이하, 순환 참조로 인한 한참 동안의 예외 메시지 콜 스택 출력]...

이에 대한 원인은 MyEntity, SubEntity 정의를 보면 쉽게 찾을 수 있습니다.

public class MyEntity
{
    [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
    public int Id { get; set; }
    public string Description { get; set; }

    public ICollection<SubEntity> SubEntities { get; set; }
}

public class SubEntity
{
    [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
    public int Id { get; set; }
    public string Description { get; set; }

    public int MyEntityId { get; set; }
    public MyEntity MyEntity { get; set; }
}

전형적인 순환 참조의 예인데요. 하지만, Entity Framework이 데이터베이스에 대한 OR-Mapping 도구임을 감안하면 위의 코드처럼 나와야 하는 것이 너무나 당연한 것도 사실입니다. 단지, 이렇게 정의된 DbContext가 지난번 DbContext.Configuration.ProxyCreationEnabled 속성 관련한 문제에서와 마찬가지로 WCF 서비스로 내보내기 하는 용도로는 적합하지 않다는 점입니다.

그럼 어떻게 해결해야 할까요? 2가지 방법이 있는데, 첫 번째로는 다음과 같이 코드를 변경함으로써 쉽게 해결이 가능합니다.

public MyEntity [] GetMyEntities()
{
    using (DBContext db = new DBContext())
    {
        var items = from record in db.MyEntities.Include("SubEntities")
                    select record;

        foreach (var item in items)
        {
            foreach (var subEntity in item.SubEntities)
            {
                subEntity.MyEntity = null;
            }
        }

        return items.ToArray();
    }
}

음... 일단은 너무나 쉬운 방법이라서 적용하기에 좋겠지만, 왠지 프로그래머의 직감으로 볼 때 뭔가 꺼림직한 면이 있습니다. 이를 해결할 수 있는 두 번째 방법은... ^^ 아쉽지만 지면(?) 관계상 다음에 살펴보도록 하겠습니다.

첨부된 파일은 여기까지 변경된 코드를 포함하고 있습니다.




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 6/27/2021]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 



2011-07-15 07시03분
Entity Framework 4.1 - CodeFirst 개체의 직렬화 시 순환 참조 해결하는 방법 - 두 번째 이야기
; http://www.sysnet.pe.kr/2/0/1087
정성태

1  2  3  4  5  6  [7]  8  9  10  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13475정성태12/7/20232682닷넷: 2180. .NET 8 - 함수 포인터에 대한 Reflection 정보 조회파일 다운로드1
13474정성태12/6/20232542개발 환경 구성: 690. 닷넷 코어/5+ 버전의 ilasm/ildasm 실행 파일 구하는 방법 - 두 번째 이야기
13473정성태12/5/20232818닷넷: 2179. C# - 값 형식(Blittable)을 메모리 복사를 이용해 바이트 배열로 직렬화/역직렬화파일 다운로드1
13472정성태12/4/20232457C/C++: 164. Visual C++ - InterlockedCompareExchange128 사용 방법
13471정성태12/4/20232642Copilot - To enable GitHub Copilot, authorize this extension using GitHub's device flow
13470정성태12/2/20232859닷넷: 2178. C# - .NET 8부터 COM Interop에 대한 자동 소스 코드 생성 도입파일 다운로드1
13469정성태12/1/20232731닷넷: 2177. C# - (Interop DLL 없이) CoClass를 이용한 COM 개체 생성 방법파일 다운로드1
13468정성태12/1/20232492닷넷: 2176. C# - .NET Core/5+부터 달라진 RCW(Runtime Callable Wrapper) 대응 방식파일 다운로드1
13467정성태11/30/20232748오류 유형: 882. C# - Unhandled exception. System.Runtime.InteropServices.COMException (0x800080A5)파일 다운로드1
13466정성태11/29/20232892닷넷: 2175. C# - DllImport 메서드의 AOT 지원을 위한 LibraryImport 옵션
13465정성태11/28/20232652개발 환경 구성: 689. MSBuild - CopyToOutputDirectory가 "dotnet publish" 시에는 적용되지 않는 문제파일 다운로드1
13464정성태11/28/20232671닷넷: 2174. C# - .NET 7부터 UnmanagedCallersOnly 함수 export 기능을 AOT 빌드에 통합파일 다운로드1
13463정성태11/27/20232528오류 유형: 881. Visual Studio - NU1605: Warning As Error: Detected package downgrade
13462정성태11/27/20232538오류 유형: 880. Visual Studio - error CS0246: The type or namespace name '...' could not be found
13461정성태11/26/20232620닷넷: 2173. .NET Core 3/5+ 기반의 COM Server를 registry 등록 없이 사용하는 방법파일 다운로드1
13460정성태11/26/20232678닷넷: 2172. .NET 6+ 기반의 COM Server 내에 Type Library를 내장하는 방법파일 다운로드1
13459정성태11/26/20232683닷넷: 2171. .NET Core 3/5+ 기반의 COM Server를 기존의 regasm처럼 등록하는 방법파일 다운로드1
13458정성태11/26/20232694닷넷: 2170. .NET Core/5+ 기반의 COM Server를 tlb 파일을 생성하는 방법(tlbexp)
13457정성태11/25/20232665VS.NET IDE: 187. Visual Studio - 16.9 버전부터 추가된 "Display inline type hints" 옵션
13456정성태11/25/20232965닷넷: 2169. C# - OpenAI를 사용해 PDF 데이터를 대상으로 OpenAI 챗봇 작성 [1]파일 다운로드1
13455정성태11/25/20232854닷넷: 2168. C# - Azure.AI.OpenAI 패키지로 OpenAI 사용파일 다운로드1
13454정성태11/23/20233210닷넷: 2167. C# - Qdrant Vector DB를 이용한 Embedding 벡터 값 보관/조회 (Azure OpenAI) [1]파일 다운로드1
13453정성태11/23/20232631오류 유형: 879. docker desktop 설치 시 "Invalid JSON string. (Exception from HRESULT: 0x83750007)"
13452정성태11/22/20232706닷넷: 2166. C# - Azure OpenAI API를 이용해 사용자가 제공하는 정보를 대상으로 검색하는 방법파일 다운로드1
13451정성태11/21/20232845닷넷: 2165. C# - Azure OpenAI API를 이용해 ChatGPT처럼 동작하는 콘솔 응용 프로그램 제작파일 다운로드1
13450정성태11/21/20232660닷넷: 2164. C# - Octokit을 이용한 GitHub Issue 검색파일 다운로드1
1  2  3  4  5  6  [7]  8  9  10  11  12  13  14  15  ...