Self referencing loop in Entity Framework Core models when using InverseProperty









up vote
0
down vote

favorite












I have the following models:



 public class MasterData

[Key]
public Guid ID get; set;

[Required]
public string Name get; set;

[InverseProperty(nameof(DetailData.MasterData))]
public List<Detaildata> Details get; set;


public class DetailData

[Key]
public Guid ID get; set;

[Required]
public string Name get; set;

[InverseProperty(nameof(ChildData.DetailData))]
public List<ChildData> Children get; set;

public Guid MasterDataID get; set;

[ForeignKey(nameof(MasterDataID))]
public MasterData MasterData get; set;



public class ChildData

[Key]
public Guid ID get; set;

[Required]
public string Name get; set;

public Guid SectionID get; set;

[ForeignKey(nameof(SectionID))]
public Section ChildSection get; set;

public Guid DetailDataID get; set;

[ForeignKey(nameof(DetailDataID))]
public DetailData DetailData get; set;



To make sure that the migration is well generated and to avoid shadow properties, I add the InverseProperty attribute to define both ends of the relationship.



However, when I try to serialize the instances, I get the following exception:




Self referencing loop detected for property 'DetailData' with type
'Models.DetailData'. Path 'Value.Item1.Details[0].Children[0]'.




Well, obviously it is a self referencing loop, as MasterData has a DetailData that has a MasterData navigation object back - as it should be in a navigational relationship.



Unfortunately, I need to serialize these objects.



A workaround would be to mark the InverseProperty properties with the JsonIgnore attribute, but I'm not sure what it would cause in the deserializing side of the project.



What should I do to avoid the self referencing loop without ignoring the navigation properties?










share|improve this question

























    up vote
    0
    down vote

    favorite












    I have the following models:



     public class MasterData

    [Key]
    public Guid ID get; set;

    [Required]
    public string Name get; set;

    [InverseProperty(nameof(DetailData.MasterData))]
    public List<Detaildata> Details get; set;


    public class DetailData

    [Key]
    public Guid ID get; set;

    [Required]
    public string Name get; set;

    [InverseProperty(nameof(ChildData.DetailData))]
    public List<ChildData> Children get; set;

    public Guid MasterDataID get; set;

    [ForeignKey(nameof(MasterDataID))]
    public MasterData MasterData get; set;



    public class ChildData

    [Key]
    public Guid ID get; set;

    [Required]
    public string Name get; set;

    public Guid SectionID get; set;

    [ForeignKey(nameof(SectionID))]
    public Section ChildSection get; set;

    public Guid DetailDataID get; set;

    [ForeignKey(nameof(DetailDataID))]
    public DetailData DetailData get; set;



    To make sure that the migration is well generated and to avoid shadow properties, I add the InverseProperty attribute to define both ends of the relationship.



    However, when I try to serialize the instances, I get the following exception:




    Self referencing loop detected for property 'DetailData' with type
    'Models.DetailData'. Path 'Value.Item1.Details[0].Children[0]'.




    Well, obviously it is a self referencing loop, as MasterData has a DetailData that has a MasterData navigation object back - as it should be in a navigational relationship.



    Unfortunately, I need to serialize these objects.



    A workaround would be to mark the InverseProperty properties with the JsonIgnore attribute, but I'm not sure what it would cause in the deserializing side of the project.



    What should I do to avoid the self referencing loop without ignoring the navigation properties?










    share|improve this question























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I have the following models:



       public class MasterData

      [Key]
      public Guid ID get; set;

      [Required]
      public string Name get; set;

      [InverseProperty(nameof(DetailData.MasterData))]
      public List<Detaildata> Details get; set;


      public class DetailData

      [Key]
      public Guid ID get; set;

      [Required]
      public string Name get; set;

      [InverseProperty(nameof(ChildData.DetailData))]
      public List<ChildData> Children get; set;

      public Guid MasterDataID get; set;

      [ForeignKey(nameof(MasterDataID))]
      public MasterData MasterData get; set;



      public class ChildData

      [Key]
      public Guid ID get; set;

      [Required]
      public string Name get; set;

      public Guid SectionID get; set;

      [ForeignKey(nameof(SectionID))]
      public Section ChildSection get; set;

      public Guid DetailDataID get; set;

      [ForeignKey(nameof(DetailDataID))]
      public DetailData DetailData get; set;



      To make sure that the migration is well generated and to avoid shadow properties, I add the InverseProperty attribute to define both ends of the relationship.



      However, when I try to serialize the instances, I get the following exception:




      Self referencing loop detected for property 'DetailData' with type
      'Models.DetailData'. Path 'Value.Item1.Details[0].Children[0]'.




      Well, obviously it is a self referencing loop, as MasterData has a DetailData that has a MasterData navigation object back - as it should be in a navigational relationship.



      Unfortunately, I need to serialize these objects.



      A workaround would be to mark the InverseProperty properties with the JsonIgnore attribute, but I'm not sure what it would cause in the deserializing side of the project.



      What should I do to avoid the self referencing loop without ignoring the navigation properties?










      share|improve this question













      I have the following models:



       public class MasterData

      [Key]
      public Guid ID get; set;

      [Required]
      public string Name get; set;

      [InverseProperty(nameof(DetailData.MasterData))]
      public List<Detaildata> Details get; set;


      public class DetailData

      [Key]
      public Guid ID get; set;

      [Required]
      public string Name get; set;

      [InverseProperty(nameof(ChildData.DetailData))]
      public List<ChildData> Children get; set;

      public Guid MasterDataID get; set;

      [ForeignKey(nameof(MasterDataID))]
      public MasterData MasterData get; set;



      public class ChildData

      [Key]
      public Guid ID get; set;

      [Required]
      public string Name get; set;

      public Guid SectionID get; set;

      [ForeignKey(nameof(SectionID))]
      public Section ChildSection get; set;

      public Guid DetailDataID get; set;

      [ForeignKey(nameof(DetailDataID))]
      public DetailData DetailData get; set;



      To make sure that the migration is well generated and to avoid shadow properties, I add the InverseProperty attribute to define both ends of the relationship.



      However, when I try to serialize the instances, I get the following exception:




      Self referencing loop detected for property 'DetailData' with type
      'Models.DetailData'. Path 'Value.Item1.Details[0].Children[0]'.




      Well, obviously it is a self referencing loop, as MasterData has a DetailData that has a MasterData navigation object back - as it should be in a navigational relationship.



      Unfortunately, I need to serialize these objects.



      A workaround would be to mark the InverseProperty properties with the JsonIgnore attribute, but I'm not sure what it would cause in the deserializing side of the project.



      What should I do to avoid the self referencing loop without ignoring the navigation properties?







      c# entity-framework-core jsonserializer






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 10 at 12:37









      Nestor

      4,08254389




      4,08254389



























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53239031%2fself-referencing-loop-in-entity-framework-core-models-when-using-inverseproperty%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53239031%2fself-referencing-loop-in-entity-framework-core-models-when-using-inverseproperty%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Top Tejano songwriter Luis Silva dead of heart attack at 64

          ReactJS Fetched API data displays live - need Data displayed static

          Evgeni Malkin