将Null列添加到linq查询

时间:2019-04-25 10:06:37

标签: linq

我想执行LINQ查询并添加一个为空的列。像这样:

        var query = (from all in data
                                    select new
                                    {
                                        all.Column1,
                                        all.Column2,
                                        all.Column3,
                                        newColumn = null
                                    })

但是,这给了我错误“无法为匿名类型属性分配null”。

1 个答案:

答案 0 :(得分:2)

根据newColumn的类型(例如, newColumn = (string) null;