How would I convert this kind of expression in VB.NET? I'm stomped!
bool exists=repo.Exists<Post>(x=>x.Title=="My Title");
This is from the SubSonic docs here: http://subsonicproject.com/docs/Using_SimpleRepository
Thanks in advance!
How would I convert this kind of expression in VB.NET? I'm stomped!
bool exists=repo.Exists<Post>(x=>x.Title=="My Title");
This is from the SubSonic docs here: http://subsonicproject.com/docs/Using_SimpleRepository
Thanks in advance!
Dim exists = repo.Exists(Of Post)(Function(x) x.Title = "My Title")