OD16.2.26 error: Field not found: 'OpenDentBusiness.Remoting
Posted: Wed Jul 06, 2016 1:58 am
I just got this error
It was working with earlier version than 16.2.26. Since I'm not using RemoteRole, if I remove the if clause, it works fine but I'm wondering what went wrong here and how we support to fix it rather than remove the remote checking code?
Thanks
M
when running the code below:Field not found: 'OpenDentBusiness.RemotingClient.RemotingRole'.
Code: Select all
if (RemotingClient.RemotingRole == RemotingRole.ClientWeb)
{
return Meth.GetObject<List<Patient>>(System.Reflection.MethodBase.GetCurrentMethod(), dateFrom, dateTo);
}
string command = "SELECT * from patient "
+ "WHERE PatStatus=0";
return OpenDentBusiness.Crud.PatientCrud.SelectMany(command);Thanks
M