public void Express(Expression<Func<User, bool>> express)
{
BLL.Manager.ILogManager logs = BLL.Container.ObjectContainer.getObject<BLL.Manager.ILogManager>();
logs.GetAll(1);
var total = logs.LastPageTotal;
}
As the above code, I need to know ILogManager the implementation class, I only know that the information reflected the way, but in the method defined type is the type of interface
I've been through the IL reflecting some call information, call the information I need to get in the end these by which class to call.