Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Microsoft Dynamics CRM (Archived)

Retriving total active cases with LINQ

(0) ShareShare
ReportReport
Posted on by 1,067

Hi!

I'm making a PostOperation plugin for the Case entity, im trying to retrive all the Active cases owned by the same Account, but the problem is that is not counting correclty, here's the code:

//Data context to retrieve the info
CrmDataContext context = new CrmDataContext(localContext.OrganizationService);
context.MergeOption = MergeOption.NoTracking;

//Early bound entity
Incident targetIncident = ((Entity)localContext.PluginExecutionContext.InputParameters["Target"]).ToEntity<Incident>();

//Count the total of ACTIVE cases of the actual account
var totalCases = (from incident in context.IncidentSet
where incident.CustomerId.Id == targetIncident.CustomerId.Id && incident.StateCode.Value == IncidentState.Active
select incident).ToList();

What i'm doing wrong?

Thanks!

*This post is locked for comments

  • Verified answer
    EnriqueMdz Profile Picture
    1,067 on at
    RE: Retriving total active cases with LINQ

    For some reason is now working, but thank you very much for your answer!

  • Mamatha Swamy Profile Picture
    5,426 on at
    RE: Retriving total active cases with LINQ

    You need to use Count method to get a count of the list items. Check this...

    weblogs.asp.net/.../tip-how-to-easily-workaround-the-method-count-is-not-supported

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Jainam Kothari – Community Spotlight

We are honored to recognize Jainam Kothari as our June 2025 Community…

Congratulations to the May Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > 🔒一 Microsoft Dynamics CRM (Archived)

#1
Mohamed Amine Mahmoudi Profile Picture

Mohamed Amine Mahmoudi 83 Super User 2025 Season 1

#2
Community Member Profile Picture

Community Member 54

#3
dkrishna Profile Picture

dkrishna 6

Featured topics

Product updates

Dynamics 365 release plans