web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

No record found.

News and Announcements icon
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

I have the same question (0)
  • Mamatha Swamy Profile Picture
    5,426 on at

    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

  • Verified answer
    EnriqueMdz Profile Picture
    1,067 on at

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

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Stars!

Meet the Microsoft Dynamics 365 Contact Center Champions

We are thrilled to have these Champions in our Community!

Congratulations to the April Top 10 Community Leaders

These are the community rock stars!

Leaderboard > 🔒一 Microsoft Dynamics CRM (Archived)

#1
ScottDurow Profile Picture

ScottDurow 2

#2
GJones Profile Picture

GJones 1

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans