Filtering list of objects in datagridview based on cell value
问题 I am currently unsure on the best way of going about getting a filter to work right on a datagridview that has its datasource set to a list of objects. So given an object of: public class DepositAccountBill { #region Properties public int AccountBillID { get; set; } public int AccountID { get; set; } public string AccountNumber { get; set; } public string ControlNumber { get; set; } public DateTime BillDate { get; set; } public decimal DepositAmount { get; set; } } I have a datagridview table