Basically I have this problem:
var item =
from itemCT in listC
join ditemRef in servRef.Repository.GetQuery(efContext).DefaultIfEmpty()
on itemCT.specialStringID equals ditemRef.refID
into DitemRef
The problem is that itemCT.specialStringID
is a string ( didnt design it ... can't change it )
Still I am required to make the join work. Any hints ?
Looking for related answers I've tried using SqlFunctions.StringConvert((double)ditemRef.refID
without success.
Any hints towards the light at the end of the tunnel helps