Quantcast
Channel: CRM Development forum
Viewing all articles
Browse latest Browse all 8223

how to retrieve n:n relationship in dynamics crm?

$
0
0

currency entity is associated with lead.i'm retrieving associated currency records.but i was unable to get the records.where im doing wrong.could you plz clarify anyone.it has N:N Relationship.below is my code

if (context.InputParameters.Contains("Target") && (context.InputParameters["Target"]) is Entity)

            {
                Entity en = (Entity)context.InputParameters["Target"];
                QueryExpression _Query = new QueryExpression
                {
                    EntityName = "transactioncurrency",
                    ColumnSet = new ColumnSet(true),
                    LinkEntities = 
                    { 
                        new LinkEntity 
                        { 
                        Columns=new ColumnSet(true),
                        LinkFromEntityName="lead",
                        LinkFromAttributeName="leadid",
                        LinkToEntityName="new_lead_transactioncurrency",
                        LinkToAttributeName="transactioncurrencyid",
                        LinkCriteria=new FilterExpression  
                        {


                            FilterOperator=LogicalOperator.And,
                            Conditions=
                            { 
                                new ConditionExpression  

                                {
                                AttributeName="transactioncurrencyid",
                                Operator=ConditionOperator.Equal,
                                Values={en.Id}
                                }
                            }

                        }

                        }
                    }
                };

                EntityCollection entitycollect = service.RetrieveMultiple(_Query);
                int entitycount = entitycollect.Entities.Count;
            }
        }

                                                                                

Viewing all articles
Browse latest Browse all 8223

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>