I hope someone can help me
I have a procedure that return a object like this {idLayer, name}
And I'm calling it like this way:
var idLayers = db.GetLayerSon(store.idLayer).Select(x => x.idLayer);
then I'm trying to make something like this:
var idGroup =
from tcGroup in db.TC_Group
join layers in idLayers
on tcGroup.idLayer equals layers.idLayer
But it not work. What is the correct form to make this?
Regards!