1
我有一個處理從相關類/表返回數據的基類。Subsonic - 僅返回顯示的某些列/屬性
我想有一些方法來指定要顯示的列。也許有一個公開的列列表,它被分配給我們想要顯示的所有列?
這是我的,但它不正確。
public void SetupGrid<T>() where T : class, new()
{
var db = new MyApp.MyDB();
IRepository<T> repo = new SubSonicRepository<T>(db);
var s = repo.GetAll();
var x = from c in s select new { c.Columns //that match columns I specify };
}