CardenInsurance
CardenInsurance
I just had a problem like this too: input: ``` Dim My_Agency_Entity_ID As Integer = (From e In db.Entities Where e.Is_Agency = True And e.Tax_ID = CType("123456789", Integer) Order By...
Apologies for leaving out the details. Here's the unmodified VB.NET code: ```vbnet Dim Live_Data = (From p In db.Policies Group Join pc In db.PolicyCrops On pc.Policy_ID Equals p.Policy_ID Into Group1...
I updated the original issue with a new example and a solution that seems correct.
I found a workaround for anyone who has this problem. Before running the CodeConverter, refactor your VB code's "Group By" line to look like this. Then, it'll convert to C#...