I'm having some trouble converting this LINQ query in C# to VB.NET.
C#:
from row in Users
group row by row.Password_tx into Passes
select new {Password = Passes.Key, Total = Passes.Count()}
I've tried to do this in VB.NET but I'm not having much luck. I know the Into syntax is a bit different but I can't figure it out for this occassion.
VB.NET:
from row in Users _
group by pass = row.Password_tx into passes = Group _
select with {.passes.Key, .passes.Count()}
