Linq Sum :
If we want to implement the Linq Concepts must use "Systme.Linq" reference
(using System.Linq;)
Example with Description:
decimal lineItems_SUM = 0;
lineItems_SUM = (from "AliasName" in "IList Items" // List items.
select "AliasName"."Property" ).Sum();
If we want to implement the Linq Concepts must use "Systme.Linq" reference
(using System.Linq;)
Example with Description:
decimal lineItems_SUM = 0;
lineItems_SUM = (from "AliasName"
select
0 comments: