如何在 BLtoolkit 中的 LINQ 查询中添加常量



我试图在 BLtoolkit 中的 LINQ 查询中添加常量。

var query = dbManager.Table.Select(x=>new { x.column, cnst = 1 });
但在结果中只有"列"列

,但没有"CNST"列。

这也应该有效:

var query = dbManager.Table.Select(x=>new { column = x.column, cnst = 1 });

试试这个形式:

var query = from x in dbManager.Table
        select new
        {
            x.column,
            cnst = 1
        };

相关内容

  • 没有找到相关文章

最新更新