How to add missing logic to the LINQ query which does not work [closed]
Posted On
Posted By Steffy Alen
public IHttpActionResult InsuranceLimit(InsuranceLimitDTO IL)
{
var result = from b in db.InsuranceTransferAcc
where b.UserId == IL.UserId
select b.CreatedDate;
}
This above query (result ) is returning me empty. Not understanding what I am missing in this query. It should return me the CreatedDate coloumn value for that UserId passed