這是我的JSON格式API修改JSON格式
[{ 「tu_id」:1, 「tu_name」: 「AKHIL」, 「tu_usrname」: 「Akhl」, 「tu_pwd」:「1234 」, 「tu_cntno」: 「423433」}]
我想ID代替tu_id
和名稱,而不是tu_name
這是我在控制器代碼
public IEnumerable<TestUser> Get()
{
DataTable dt = new DataTable();
TestUserBL userbl = new TestUserBL();
dt = userbl.TestUserSel();
var user = dt.AsEnumerable().Select(x => new TestUser
{
tu_id = x.Field<int>("tu_id"),
tu_name = x.Field<string>("tu_name"),
tu_usrname=x.Field<string>("tu_usrname"),
tu_pwd=x.Field<string>("tu_pwd"),
tu_cntno=x.Field<string>("tu_cntno")
// like wise initialize properties here
});
return user;
}
這裏我不能改變tu_id
?
請按照你的代碼編碼規範,因爲它在乾淨的代碼情況下是相當重要的https://stackoverflow.com/a/1618325/5621827 – jitender