NHibernate fetchmany重复值存储库模式

时间:2013-09-03 12:00:57

标签: c# linq nhibernate fluent-nhibernate

我的查询列表中存在重复结果的问题。

我的存储库方法有两个FetchMany

    public IQueryable<MyEntity> Query()
    {
        return Session.Query<MyEntity>()
            .FetchMany(x => x.ListA)
            .FetchMany(x => x.ListB);
    }

查询:

var result = _myEntityRepository
    .Query()
    .Where(x => names.Contains(x.Name))
    .Where(x => x.ListA.Any(m => listAIds.Contains(m.Id)))
    .Where(x => x.ListB.Any(m => listBIds.Contains(m.Id)))
    .OrderBy(x => x.CreationDate)
    .ToList();

映射:

        HasManyToMany(x => x.ListA)
            .Table("MY_ENTITY_TYPE_A")
            .ParentKeyColumn("MYENTITY_ID")
            .ChildKeyColumn("MYENTITYA_ID")
            .Fetch.Join();

ListA是具有多个属性的MyEntityA类。

ListB是具有多个属性的MyEntityB类。

生成的SQL很好并且获取了我需要的值,添加到ListAListB的值多次重复。 ListA和ListB是单独的表(多对多)。

我使用fluent-nhibernate

我使用ToFuture查找,但只给了我Method Not Implemented Exception,我不想在我的存储库外使用NHibernate。

以下是我的尝试:

    public IQueryable<MyEntity> Query()
    {
        var query = Session.Query<MyEntity>();

        Session.Query<MyEntity>().FetchMany(x => x.ListA).ToFuture();
        Session.Query<MyEntity>().FetchMany(x => x.ListB).ToFuture();

        return query;
    }

抛出异常:

        Session.Query<MyEntity>().FetchMany(x => x.ListA).ToFuture();

TargetInvocationException抛出内部异常“方法或操作未实现。”

堆栈追踪:

   at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
   at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at NHibernate.Linq.DefaultQueryProvider.ExecuteFutureQuery(NhLinqExpression nhLinqExpression, IQuery query, NhLinqExpression nhQuery)
   at NHibernate.Linq.DefaultQueryProvider.ExecuteFuture(Expression expression)
   at NHibernate.Linq.LinqExtensionMethods.ToFuture[T](IQueryable`1 query)

怎么能做到这一点?目前我在ListA和ListB上做Disctint,但它似乎更慢,并且对于创建的实体中的所有重复值都不太好。

MyEntity在ListA中有许多EntityA项,在ListB中有许多EntityB项,但数据库中没有重复项。

注意:我必须为两者使用FetchMany,否则会有太多的选择查询!

1 个答案:

答案 0 :(得分:1)

ToFuture工作非常重要。 x.ListA X x.ListB是笛卡尔积。 ToFuture应该有效。您能否提供有关您尝试使用它的更多详细信息?

忽略笛卡尔产品,在映射<set/><bag/>时,您可以使用ListA代替ListB来使用当前的工作方法。这告诉NHibernate集合不应该包含重复项。通常这不是必需的,但在同一查询中同时包含ListAListB会创建重复的结果。 <set/>应该解决这个问题。