本文介绍了使用字符串变量作为别名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


我有一个字符串变量myFieldname.
如何在linq表达式中将其值用作别名?

Hi,
I have a string variable, myFieldname.
How can I use its value as a alias in a linq expression?

string myFieldname = "theName";
var q = (from d in data select new { d.Id, myFieldname = d.Amount });



我希望"theName"成为别名,而不是"myFieldname"本身.



I want ''theName'' be the alias not the ''myFieldname'' itself.

推荐答案


这篇关于使用字符串变量作为别名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-21 18:09