0

私はこれを何時間も機能させようとしています。例を試し、ドキュメントを読みましたが、理解できません。

名前フィールドを使用して、DBから個別の値を照会したいと思います。これはうまくいくはずだと思いますが、うまくいきません。Distinctメソッドが見つかりません

[HttpGet]
    public IQueryable<MvlOP> MvlOpsPerson(long mvlId)
    {
        System.Data.Entity.Infrastructure.DbQuery<MvlOP> query = ContextProvider.Context.MvlOps;

        query = query.Include("StatusOP");
        return query.Where(op => op.MvlId == mvlId).Distinct(new PropertyComparer<MvlOP>("Id_P"));
    }

次のエラーが発生します。

ExceptionMessage=LINQ to Entities does not recognize the method 'System.Linq.IQueryable`1[MAHN.Model.MvlOP] Distinct[MvlOP](System.Linq.IQueryable`1[MAHN.Model.MvlOP], System.Collections.Generic.IEqualityComparer`1[MAHN.Model.MvlOP])' method, and this method cannot be translated into a store expression.

ExceptionType = System.NotSupportedException

だからこれは間違っています。私が理解している限り、そよ風は明確な値のクエリを提供しません。すべてのクエリとフィルタリングはオプションではありません。これをどのように行うことができるかについての助けは大歓迎です。

4

2 に答える 2

1

私はこれを投稿して、それを必要とするかもしれない誰かがそれを使うことができるようにします。多分これは何らかの方法で改善することができます。(Breeze DocCodeに触発されました(NorthwindControllerのPartialClass Apiメソッドに感謝します:))

個別の値のクエリは、次の方法で実行できます。Distinct(IEqualityComparer)メソッドを使用できるようにするには、クエリがIEnumerableとしてメモリ内にある必要があります。EqualityComparerをSQLステートメントに変換することはできません。したがって、where句が適用され、結果のレコードがComparerによってフィルタリングされます。

return query.AsQueryable():skip / takeおよびinlineCountを使用できるようにするには、クエリがである必要がありIQueryable<T>ます。そのため、メソッドAsQueryable()

//The API Method ----------
[HttpGet]
    public IQueryable<MvlOPPersonPartial> MvlOpsPerson(long mvlId)
    {
        var query = (from op in ContextProvider.Context.MvlOps
                      where op.MvlId == mvlId
                      select new MvlOPPersonPartial()
                          {
                              MvlId = op.MvlId,
                              Kundenname = op.Kundenname,
                              Kundennummer = op.Kundennummer,
                              Id_P = op.Id_P
                          })
                          .AsEnumerable()
                          .Distinct(new PropertyComparer<MvlOPPersonPartial>("Id_P"));
        return query.AsQueryable();
    }

public class MvlOp
{
...
    public string Kostenstelle { get; set; }
    public string Betreuer_Id { get; set; }
    public decimal? Id_P { get; set; }
    public string Kundenname { get; set; }
    public string Kundennummer { get; set; }
    public string Person_Typ1 { get; set; }
...
}


//The partial class needed for distinct values ------------
//MvlOP cannot be constructed in an LINQ to Entities query
public class MvlOPPersonPartial
{
    public long MvlId { get; set; }
    public string Kundenname { get; set; }
    public string Kundennummer { get; set; }
    public decimal? Id_P { get; set; }
}


//A generic comparer ---------------
public class PropertyComparer<T> : IEqualityComparer<T>
{
    private PropertyInfo _PropertyInfo;

    /// <summary>
    /// Creates a new instance of PropertyComparer.
    /// </summary>
    /// <param name="propertyName">The name of the property on type T 
    /// to perform the comparison on.</param>
    public PropertyComparer(string propertyName)
    {
        //store a reference to the property info object for use during the comparison
        _PropertyInfo = typeof(T).GetProperty(propertyName,
    BindingFlags.GetProperty | BindingFlags.Instance | BindingFlags.Public);
        if (_PropertyInfo == null)
        {
            throw new ArgumentException(string.Format("{0} is not a property of type {1}.", propertyName, typeof(T)));
        }
    }

    #region IEqualityComparer<T> Members

    public bool Equals(T x, T y)
    {
        //get the current value of the comparison property of x and of y
        object xValue = _PropertyInfo.GetValue(x, null);
        object yValue = _PropertyInfo.GetValue(y, null);

        //if the xValue is null then we consider them equal if and only if yValue is null
        if (xValue == null)
            return yValue == null;

        //use the default comparer for whatever type the comparison property is.
        return xValue.Equals(yValue);
    }

    public int GetHashCode(T obj)
    {
        //get the value of the comparison property out of obj
        object propertyValue = _PropertyInfo.GetValue(obj, null);

        if (propertyValue == null)
            return 0;

        else
            return propertyValue.GetHashCode();
    }

    #endregion
}
于 2013-01-10T19:21:18.410 に答える
0

問題は、Entity Framework (EF) が PropertyComparer を使用できないことだと思います。EF は、比較子なしで Distinct のみをサポートします。

于 2013-01-10T01:12:34.023 に答える