Question : Any SQL to LINQ converters out there?

Can anyone convert the attached SQL query into LINQ for me?...

Thanks,

Martin.
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
select distinct        
        cpo.firstname,        
        cpo.surname,        
        details = stuff((select distinct ',' + cast(occ.detail as varchar)      
                        from tblCrmContactObjects occ        
                       inner join tblCrmContactObjectLinks ccol on ccol.crm_contact_object_id = occ.crm_contact_object_id   
where cpo.crm_person_object_id = ccol.crm_object_id   
                        order by 1    
                        for xml path('')), 1, 1, '')       
from tblCrmPersonObjects cpo  
where cpo.firstname = 'Ashish'

Answer : Any SQL to LINQ converters out there?

As Far as I heard, Linqer is the only tool with pretty decent conversions converting most common T-SQL Statements(And hence Not complete conversions)..

http://www.sqltolinq.com/

And it has its own limitations too
Random Solutions  
 
programming4us programming4us