skip to Main Content

Take max date row from duplicates and remove duplicates in the list using linq – Asp.net

I have a below linq query and getting data like below example want to remove duplications List<EmployeeSalary> lstEmployeeSalary = new EmployeeSalaryFactory().GetRelatedObjects(inValue, ddlPayDate, payRollType, payrollSearch) .Select(m => (EmployeeSalary)m) .ToList(); For ex.: Id Name EmpCode Salary DateOfSalary ------------------------------------------------------------- 1 Item1 IT00001 $100…

VIEW QUESTION

Deserialized Json object value is null – Asp.net

I'm not able to get the value from OneDay.price_change. The HTTP response is OK and I'm getting the following: HTTP Response "[{"id":"BTC","currency":"BTC","symbol":"BTC","name":"Bitcoin","logo_url":"https://s3.us-east-2.amazonaws.com/nomics-api/static/images/currencies/btc.svg","status":"active","price":"60947.08258854","price_date":"2021-10-31T00:00:00Z","price_timestamp":"2021-10-31T18:51:00Z","circulating_supply":"18860037","max_supply":"21000000","market_cap":"1149464232662","market_cap_dominance":"0.4078","num_exchanges":"397","num_pairs":"67587","num_pairs_unmapped":"5196","first_candle":"2011-08-18T00:00:00Z","first_trade":"2011-08-18T00:00:00Z","first_order_book":"2017-01-06T00:00:00Z","rank":"1","high":"66082.82561618","high_timestamp":"2021-10-20T00:00:00Z","1h":{"volume":"1248590564.91","price_change":"-85.32656234","price_change_pct":"-0.0014","volume_change":"-218879322.04","volume_change_pct":"-0.1492","market_cap_change":"-1607003923.65","market_cap_change_pct":"-0.0014"},"1d":{"volume":"39937857069.60","price_change":"-845.68642611","price_change_pct":"-0.0137","volume_change":"1918883279.43","volume_change_pct":"0.0505","market_cap_change":"-15892518975.54","market_cap_change_pct":"-0.0136"}}]n" However, for some reason, I'm not able to take the 1d price change. I'm not sure what could…

VIEW QUESTION

How to return a list to view after foreach in c# – Asp.net

I have this code where I am iterating over objects using foreach loop public ActionResult userDocs() { var user = Server.HtmlEncode(Request.Cookies["UserName"].Value); var role = db.userdetails.FirstOrDefault(s => s.UserName == user).FullName; var test = "kokulchellamuthu1programmer"; var find = db.ApplySchedule.Where(x => x.CC.Contains(test)).ToList(); foreach(var…

VIEW QUESTION
Back To Top
Search