简体   繁体   中英

Linqkit: Prevent circular references and stackoverflow

I'm using LinqKit with EntityFrameWorkCore to create projections with single element projections. But since some Models are nested I'm getting a stackoverflow. I tried to add a condition to the Projection method (bool mapCollusions) to prevent this, but it seems to be ignored. Does anyone have an idea how to prevent these circluar references?

public static Expression<Func<Transport, TransportModel>> GetMainProjection()
        {
            return transport => new TransportModel()
            {
                Inmate = transport.Inmate != null ? InmateProjectionsGetProjection(true).Invoke(transport.Inmate) : null,
            };

 public static Expression<Func<Inmate, InmateModel>> InmateProjectionsGetProjection(bool mapCollusions)
        {
            return inmate => new InmateModel()
            {
                Collusions = mapCollusions ? inmate.Collusions.AsQueryable()
                    .Select(collusion => CollusionProjectionsGetProjection(false).Invoke(collusion))
                    .ToList() : null     
            };
        }

public static Expression<Func<Collusion, CollusionModel>> CollusionProjectionsGetProjection(bool mapInmate)
        {
            return collusion => new CollusionModel()
            {
                Inmate = mapInmate ? InmateProjectionsGetProjection(false).Invoke(collusion.Inmate) : null,
            };
        }

Try the following realisation:

public static Expression<Func<Transport, TransportModel>> GetMainProjection()
{
    return transport => new TransportModel()
    {
        Inmate = transport.Inmate != null ? InmateProjectionsGetProjection(true).Invoke(transport.Inmate) : null,
    };
}

public static Expression<Func<Inmate, InmateModel>> InmateProjectionsGetProjection(bool mapCollusions)
{
    if (!mapCollusions)
        return inmate => new InmateModel();

    return inmate => new InmateModel()
    {
        Collusions = nmate.Collusions.AsQueryable()
            .Select(collusion => CollusionProjectionsGetProjection(false).Invoke(collusion))
            .ToList()
    };
}

public static Expression<Func<Collusion, CollusionModel>> CollusionProjectionsGetProjection(bool mapInmate)
{
    if (!mapInmate)
        return collusion => new CollusionModel();

    return collusion => new CollusionModel()
    {
        Inmate = InmateProjectionsGetProjection(false).Invoke(collusion.Inmate),
    };
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM