Reputation: 111
How do I convert this statement into LINQ?
SELECT Sum(Balance) FROM account WHERE name='stocks' AND userid=290;
Upvotes: 7
Views: 12269
Reputation: 2018
Like this:
myBalanceSum = account.Where(x => x.name == 'stocks' && x.userid == 290 ).Sum(x => x.Balance);
Upvotes: 0
Reputation: 236208
var sum = db.account.Where(a => a.name == "stocks" && a.userid == 290)
.Sum(a => a.Balance);
Upvotes: 6
Reputation: 263703
decimal sumLineTotal = (from od in account
where name == 'stocks' && userid == 290
select Balance).Sum();
Upvotes: 10