Skip to content
View holyqqwqqasd's full-sized avatar

Block or report holyqqwqqasd

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. expression.cs expression.cs
    1
            private static IEqualityComparer<T> GetInstance()
    2
            {
    3
                var type = typeof(T);
    4
                ParameterExpression[] parameters =
    5
                {
  2. ExpressionExpand.cs ExpressionExpand.cs
    1
    void Main()
    2
    {
    3
    	Expression<Func<Test, Test>> f = x => x;
    4
    	var r = new Test[0].AsQueryable().Append(new Test(444)).Select(q => new { A = q.X.ToString(), F = f.Apply(q).Double() }).Expand();
    5
    	r.Expression.ToString().Dump();