摘要:
/// /// 动态填写实体类的值 /// /// public class DynamicEntityBuilder { private static readonly MethodInfo getValueMethod = typeof(IDataRecord).GetMethod("get_Item", new Type[] { typeof(int) }); private static readonly MethodInfo isDBNullMethod = typeof(IDataRecord).GetMethod("... 阅读全文