Posts by Jair de Freitas • 31 points
1 post
-
3
votes3
answers175
viewsA: What is the most correct way to make a query with LINQ?
It is returned Null because you are comparing a LONG with INT, try to do it this way. public decimal GetCustomerBalance(int accountCurrentAdvisorId) { return this.Table.Where(x =>…