I am trying to get following code working , This was working fine for MSSQL , but since i changed to use mySql it is not working
records.Content = db.areas
.Where(x => x.Name.Contains(filter)))
.OrderBy("dated desc")
.ToList();
I get the error " Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information."
string colName = "datedD" ;
how to order by depneding on colName variable ?
`