我有以下代码:
public class MyContext:DbContext
{
DbSet<ABFoo> ABFoo { get; set; }
DbSet<CDFoo> CDFoo { get; set; }
}
ABFoo and CDFoo are classes with same members. I have now and this query:
var t = context.ABFoo.Where(a => a.ID == 10);
我想让ABFoo的桌子这样改变
var t = context.ABFoo.Where(a => a.ID == 10).OnThePrefixTable("CD");
Even if query is executed on ABFoo table, i have to switch to the CDFoo table. I know i have to use ExpressionVisistors and change the "object", but do not know well what should i do! Thank you a lot!