Per quanto riguarda la risposta a questa domanda Passaggio di DataContext in Action () , come restituisco un valore da action (db)?
SimpleUsing.DoUsing(db => {
// do whatever with db
});
Dovrebbe essere più simile a:
MyType myType = SimpleUsing.DoUsing<MyType>(db => {
// do whatever with db. query buit using db returns MyType.
});