would be grate if someone could help me to translate this into lambda expression or something like.
firstly introduction: are two tables/objects:
OFFICE
{officeID,
NAME,
another data}
WORKER
{ID,
officeID,
NAME}
There is n of offices and m of workers in each off it. (we don't know exact numbers and we don't need them)
I know WORKER NAME, I have to get all OFFICES where is at least one worker with such NAME.
So, SQL will be somethin like this :
SELECT * FROM OFFICE WHERE officeID = (SELECT officeID FROM WORKER where NAME='myName');
(maybe could be another, I'm not sure)
Just, could someone help me get the same using types:OFFICES,WORKER, with lambda expression and IQueryable?
ORMdo you use? What is the name of repository? – Ilya Ivanov Jan 8 at 19:46