English 中文(简体)
不能把对NHibernate结果表示某种方法的表示转化为LambdaExpression
原标题:Passing an expression to a method in NHibernate results in Object of type ConstantExpression cannot be converted to type LambdaExpression

这个问题在2国和3国都存在。 我有一个A级,成员为B级。 这些班级直接执行。 但是,当我把涉及B类的表述变成一种方法时,我会发现以下错误:

System.ArgumentException: Object of type System.Linq.Expressions.ConstantExpression cannot be converted to type System.Linq.Expressions.LambdaExpression .

只要我能看到,我就将确切的同样表述纳入任何(......)方法。 但出于某种原因,他们受到不同的对待。 我做了一些细致的工作,从第一种方法来看,这一表述被作为表达方式对待,而第2种方法中的同样表述似乎与NodeType Constant一样对待。 第2种方法中的表达方式的括号是: 因此,它认为,不同的试验方法中,表达的树木不同。 我根本不理解为什么和应该做些什么来解决这个问题。

Classes involvend:

public class A
{
   public virtual int Id { get; set; }
   public virtual ISet<B> DataFields { get; set; }
}

public class B
{
   public virtual int Id { get; set; }
}

抽样测试代码:

    [TestMethod]
    public void TestMethod1()
    {
        using (ISession session = sessionFactory.OpenSession())
        {
            var records = session.Query<A>()
                                 .Where<A>(a => a.DataFields
                                                 .Any(b => b.Id == 1));
            Console.Write("Number of records is {0}", records.Count());
        }
    }

    [TestMethod]
    public void TestMethod2()
    {
        GetAsWhereB(b => b.Id == 1);
    }

    private void GetAsWhereB(Func<B, bool> where) 
    {
        using (ISession session = sessionFactory.OpenSession())
        {
            var records = session.Query<A>()
                                 .Where(a => a.DataFields
                                              .Any(where));
            Console.Write("Number of records is {0}", records.Count());
        }
    }
最佳回答

不清楚这是否是适当的解决办法。 问题像我们的工作一样,感觉到我的解决办法。 尽管如此,下面为我做了工作,用其体和参数制作新表述,使我无法制作具体表述的复印件。

private void GetAsWhereB(Func<B, bool> where) 
{
    Expression<Func<T, bool>> w = Expression.Lambda<Func<T, bool>>(where.Body, where.Parameters);
    using (ISession session = sessionFactory.OpenSession())
    {
        var records = session.Query<A>()
                             .Where(a => a.DataFields
                                          .Any(w));
        Console.Write("Number of records is {0}", records.Count());
    }
}
问题回答

这是一个问题:

private void GetAsWhereB(Func<B, bool> where) 

选择delegate——你想要一个expression /em>否则,NHibernate就没有参与。 为此:

private void GetAsWhereB(Expression<Func<B, bool>> where)

除此以外,由于你使用白色空间,你难以理解。 我建议不要:

var records = session.Query<A>().Where<A>(a => a.DataFields.
                                 Any(b => b.Id == 1));

you make it clear that the "Any" call is on DataFields:

var records = session.Query<A>().Where<A>(a => a.DataFields
                                                .Any(b => b.Id == 1));

我还建议,将参数名称从“地方”改为“地方”或“意向”。 a. 某种 no,任何途径:





相关问题
nHibernate one-to-many inserts but doesnt update

Instead of getting into code, I have a simple question. Default behavior for a simple one-to-many is that it inserts the child record then updates the foreign key column with the parent key. Has ...

How Do I copy an existing nhibernate object as a new object?

I a persisted NHibernate object that I would like to repersist as a new entity. How do I get NHibernate to save this object as if it was a new? I am thinking I might create a session interceptor to ...

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

WPF - MVVM - NHibernate Validation

Im facing a bit of an issue when trying to validate a decimal property on domain object which is bound to a textbox on the view through the viewmodel. I am using NHibernate to decorate my property on ...

NHibernate Search in a List using ICriteria

I have my class X : public class ClassX { public virtual IList<ClassY> ListY { get; set; } ... } My ClassX mapping (using Fluent) ... HasMany<ClassX>(x => x.ListY ) ....