I recently started using Rob Conery's Massive for reading from an Oracle database in C#.
It's working really well. However, recently I came across a problem when trying to perform an inner join. Usually you just do this to specify what table you are reading from:
public class Products:DynamicModel {
public Products():base("northwind", "products","productid") {}
}
However, when performing an inner join you are reading from more than one table. How would I get around this?