internal static PropertyDescriptorCollection GetProperties(DapperRow row) => GetProperties(row?.table, row);
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DapperRowTypeDescriptor"/> class.
 /// </summary>
 /// <param name="instance">The instance.</param>
 public DapperRowTypeDescriptor(object instance)
 {
     _row = (DapperRow)instance;
 }