back to top

Infor CRM Summing a Property of an Entity Collection Using Linq

With the collections available in the entity model it makes it very easy to navigate between entities to get related objects. For instance it is very easy to access all opportunities tied to an account via the Opportunities collection.

By looping through the collection you can do things like sum up the sales potential of all opportunities:

var account = this.BindingSource.Current as Sage.Entity.Interfaces.IAccount;
double amt = 0;
foreach(var opp in account.Opportunities)
{
    amt += opp.SalesPotential;
}

Console.WriteLine(amt.ToString());

You could also do this via a direct call to SQL using OLEDB calls (but why would you?):

var account = this.BindingSource.Current as Sage.Entity.Interfaces.IAccount;
double amt = 0;
var datasvc = Sage.Platform.Application.ApplicationContext.Current.Services.Get<Sage.Platform.Data.IDataService>();
using (var conn = new System.Data.OleDb.OleDbConnection(datasvc.GetConnectionString()))
{
    conn.Open();
    string sql = "select sum(salespotential) Amt from opportunity where ACCOUNTID = '{0}'";
    using (var cmd = new System.Data.OleDb.OleDbCommand(string.Format(sql, account.Id.ToString()), conn))
    {
        using (var reader = cmd.ExecuteReader())
        {
            if (reader.HasRows)
            {
                reader.Read();
                amt = reader.GetDouble(0);
            }
            reader.Close();
        }
    }
}
Console.WriteLine(amt.ToString());

However, there is a far quicker way of doing this using Linq (be sure to add using System.Linq to your using directives):

    var account = this.BindingSource.Current as Sage.Entity.Interfaces.IAccount;
    double amt = account.Opportunities.Sum(x => x.SalesPotential.HasValue?x.SalesPotential.Value:0);    
    Console.WriteLine(amt.ToString());

There you go. Options galore!

Contact Customer FX for your CRM project
We let our expertise speak for itself - let us know how our all-star team can help on your CRM project
About the Author
Kris Halsrud
Kris Halsrud
Kris Halsrud is a Senior Analyst / Developer for Customer FX Corporation.

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Infor CRM Sync for Exchange: Action Required by August 31, 2026

Using Infor CRM Sync for Exchange with Microsoft 365? Your Exchange administrator must update tenant settings by August 31, 2026 to prevent sync disruption.

[Webinar] What’s Coming Next for Infor CRM SLX and Why v10 Matters

See what’s coming next for Infor CRM SLX, including new marketing workflows, automation improvements, and reasons to consider upgrading to v10.

Disable Caching in Infor CRM SLX Web Client

In the rare case caching is causing issues in the Infor CRM SLX web client, it is possible to disable specific types of caching by making edits using Application Architect, and then deploying.

Exploring AI Options for Infor CRM v10

I've started taking a closer look at the AI capabilities built into Infor CRM v10. Over the next several posts, I'll share what I learn. From the built-in features and supported AI providers to implementation considerations, costs, and practical use cases.

Infor CRM SLX 10.0: Delegate Ownership Changes for “Everyone” Records

Learn how the new EveryoneOwnerAssignment secured action in Infor CRM SLX 10.0 allows designated users to change ownership of Everyone-owned records without requiring Administrator access.

Related Articles

Infor CRM Sync for Exchange: Action Required by August 31, 2026

Using Infor CRM Sync for Exchange with Microsoft 365? Your Exchange administrator must update tenant settings by August 31, 2026 to prevent sync disruption.

[Webinar] What’s Coming Next for Infor CRM SLX and Why v10 Matters

See what’s coming next for Infor CRM SLX, including new marketing workflows, automation improvements, and reasons to consider upgrading to v10.

Disable Caching in Infor CRM SLX Web Client

In the rare case caching is causing issues in the Infor CRM SLX web client, it is possible to disable specific types of caching by making edits using Application Architect, and then deploying.

Exploring AI Options for Infor CRM v10

I've started taking a closer look at the AI capabilities built into Infor CRM v10. Over the next several posts, I'll share what I learn. From the built-in features and supported AI providers to implementation considerations, costs, and practical use cases.

Related Videos