_dbContext.Users.AsNoTracking().OrderBy("Id").ToListAsync()
throw exception:
No property or field 'Id' exists in type 'ApplicationUser' (at index 0)
But it's going well with System.Linq.Dynamic.Library (without netcore)
If I override the property Id in ApplicationUser, It will be ok.
(Asp.Net Core RC2,ApplicationUser based on IdentityUser)
"System.Linq.Dynamic.Core": "1.0.3"
_dbContext.Users.AsNoTracking().OrderBy("Id").ToListAsync()throw exception:
No property or field 'Id' exists in type 'ApplicationUser' (at index 0)But it's going well with System.Linq.Dynamic.Library (without netcore)
If I override the property
Idin ApplicationUser, It will be ok.(Asp.Net Core RC2,ApplicationUser based on IdentityUser)
"System.Linq.Dynamic.Core": "1.0.3"