0

我正在向 L2S 生成器创建的部分类添加一些属性。我正在尝试基于 2 个其他属性创建一个“可用”布尔属性。“启用”和“确认”我确实有

    public Boolean Available
    {
        get
        {
            return (Enabled && Confirmed);
        }
    }

但是,在运行此程序时,它会引发“无法转换为 SQL”错误。

如何在查询数据上下文时创建此属性而无需始终检查“已启用”和“已确认”?

谢谢

4

1 回答 1

1

让它返回一个表达式!请参阅: http: //www.atrevido.net/blog/2007/09/05/Calling+Custom+Methods+In+LINQtoSQL.aspx

这篇文章也可能会有所帮助: Method X has no supported translation to SQL - booleans and datetime

于 2012-07-12T16:04:30.760 回答