嗨,我创建了一个类来从我的客户的帐户表中获取值,我为此创建了一个类。我想通知 AccountId 和我想要返回结果的表的字段(例如 FirstName)。实现这一目标的最佳方法是什么?我得到了类似下面的东西作为我的替代方案,但我无法让它工作......
这就是我想要获得名字结果的方式:
LabelFirstName.Text = Manage.GetAccount(2, "FirstName"); // where 2 is the id I informed and FirstName is the Column I want to retrieve from the table.
例如,结果将是“John”。
这就是我所拥有的:
public class Manage
{
public Manage()
{
}
public static string GetAccount(int AccountId, string Field)
{
LinqSqlDataContext contextLoad = new LinqSqlDataContext();
var q = (from p in contextLoad.MyAccounts
where p.AccountId == AccountId
select p).Single();
string var = q.?? // ?? would be my Field string "FirstName" for example
return var;
}
}
请帮忙
谢谢