|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: |
var query = from ada in db.ApplicantDetails.Where(predicate)
join vdv in db.VacancyDetails on ada.VacancyID equals vdv.VacancyID
join adag in db.AgencyDetails on ada.AgencyID equals adag.AgencyID
join aaa in db.AgencyAgents on adag.AgencyID equals aaa.AgencyID
join rlv in db.ResultLookups on ada.ResultCode equals rlv.ResultCode
// perform a left join on ApplicantInterviews so all fields are returned including NULLs
join aia in db.ApplicantInterviews on ada.ApplicantID equals aia.ApplicantID into appinterviews
from aia in appinterviews.DefaultIfEmpty()
//Remove the "[first name]" option from the grid
where ada.FirstName != "[first name]"
orderby ada.LastName
select new { ada.ApplicantID, ada.VacancyID, ada.AgencyID, ada.ResultCode, ApplicantName = ada.Salutation + ' ' + ada.FirstName + ',' + ' ' + ada.LastName, ada.Address, ada.Phone, ada.Email, ada.CVFilePath, vdv.Title, ClosingDate = vdv.ClosingDate.ToShortDateString(), adag.Company, rlv.ResultDescription, aaa.ContactFirstName, aaa.ContactLastName, aaa.AgentPhone, Successful = (aia.Successful == null) ? false : (aia.Successful) };
|
Advertisement
| Hall of Fame |