it would work the same as a linq example. if the linq example looks like this: not too fimilar with linq, so consider this sudo code.
public void MyAction()
{
var foos = from foo select *;
ViewEngine.Load("foo.aspx", foos);
}
then the llbl version would look like this
public void MyAction()
{
EntityCollection<FooEntity> foos = new EntityCollection<FooEntity>();
new DataAccessAdapter().FetchCollection(foos, null);
ViewEngine.Load("foo.aspx", foos);
}
what exactly are you stuck on?