我得到了错误:

扩展方法必须在非泛型静态类中定义

在线上:

public class LinqHelper

下面是基于Mark Gavells代码的helper类。我真的很困惑这个错误意味着什么,因为我确信它在周五离开时工作得很好!

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Linq.Expressions;
using System.Reflection;

/// <summary>
/// Helper methods for link
/// </summary>
public class LinqHelper
{
    public static IOrderedQueryable<T> OrderBy<T>(this IQueryable<T> source, string property)
    {
        return ApplyOrder<T>(source, property, "OrderBy");
    }
    public static IOrderedQueryable<T> OrderByDescending<T>(this IQueryable<T> source, string property)
    {
        return ApplyOrder<T>(source, property, "OrderByDescending");
    }
    public static IOrderedQueryable<T> ThenBy<T>(this IOrderedQueryable<T> source, string property)
    {
        return ApplyOrder<T>(source, property, "ThenBy");
    }
    public static IOrderedQueryable<T> ThenByDescending<T>(this IOrderedQueryable<T> source, string property)
    {
        return ApplyOrder<T>(source, property, "ThenByDescending");
    }
    static IOrderedQueryable<T> ApplyOrder<T>(IQueryable<T> source, string property, string methodName)
    {
        string[] props = property.Split('.');
        Type type = typeof(T);
        ParameterExpression arg = Expression.Parameter(type, "x");
        Expression expr = arg;
        foreach (string prop in props)
        {
            // use reflection (not ComponentModel) to mirror LINQ
            PropertyInfo pi = type.GetProperty(prop);
            expr = Expression.Property(expr, pi);
            type = pi.PropertyType;
        }
        Type delegateType = typeof(Func<,>).MakeGenericType(typeof(T), type);
        LambdaExpression lambda = Expression.Lambda(delegateType, expr, arg);

        object result = typeof(Queryable).GetMethods().Single(
                method => method.Name == methodName
                        && method.IsGenericMethodDefinition
                        && method.GetGenericArguments().Length == 2
                        && method.GetParameters().Length == 2)
                .MakeGenericMethod(typeof(T), type)
                .Invoke(null, new object[] { source, lambda });
        return (IOrderedQueryable<T>)result;
    }
}

当前回答

改为

public static class LinqHelper

其他回答

在类声明中添加关键字static:

// this is a non-generic static class
public static class LinqHelper
{
}

扩展方法应该在静态类中。 所以请将扩展方法添加到静态类中。

比如它应该是这样的

public static class myclass
    {
        public static Byte[] ToByteArray(this Stream stream)
        {
            Int32 length = stream.Length > Int32.MaxValue ? Int32.MaxValue : Convert.ToInt32(stream.Length);
            Byte[] buffer = new Byte[length];
            stream.Read(buffer, 0, length);
            return buffer;
        }

    }

我遇到了类似的问题,我创建了一个“foo”文件夹,并在foo内部创建了一个“类”,然后我得到上述错误。一个解决办法是添加“静态”,如前面提到的类将是“公共静态类LinqHelper”。

我的假设是,当你在foo文件夹中创建一个类时,它会将其视为一个扩展类,因此以下规则适用于它:

1)每个扩展方法都必须是静态方法

如果你不想要静电。 我的解决方法是直接在命名空间下创建一个类,然后将它拖到“foo”文件夹中。

改为

public static class LinqHelper

试着改变

public class LinqHelper

to

 public static class LinqHelper