How can you make something like this generic
return from items in _db.Table
select items;
I would like to do something like this
public class Data<T> ( where T is the model object )
so the Table will change to the value of T
How would this look as a generic class with a save method for instance
Thanks