simple-access-orm icon indicating copy to clipboard operation
simple-access-orm copied to clipboard

using Entity repository If Property is Boolean Nullable Throwing Issue

Open Khan291 opened this issue 4 years ago • 0 comments

Exception :"The type 'Nullable`1' of property 'IsHigherAuthority' is not supported"

public bool? IsHigherAuthority { get; set; }

_repo.Find<CasUser>(w => w.DepartmentId == departmentId && w.IsHigherAuthority==true);

Khan291 avatar Jan 25 '22 07:01 Khan291