What is the difference between LINQ query expressions and extension methods

后端 未结 8 1031
一个人的身影
一个人的身影 2020-12-23 15:39

Below are two queries that return the same data. Other then style I am not sure which is better.

What factors influence these queries? What are the benefits of us

相关标签:
8条回答
  • 2020-12-23 15:45

    1./ Your question title does not match what you asked.
    2./ Your question title does not really make sense. Linq stands for Language Integrated Query and is an umbrella term for a bunch of technologies and practices, IQueryable is an interface that is commonly used to facilitate Linq. you are comparing Apples and Oranges
    3./ About your actual question, the main difference is style, for complex queries like this one, my personal preference is the 2nd version, as it clearly shows the progression of the result sets.

    0 讨论(0)
  • 2020-12-23 15:47

    Another point worth mentioning is that the Linq extension methods adhere to C# language whereas the query comprehension stuff is preprocessed like is built into the compiler. i.e you can navigate to the definition of .Select(x => whereas you cannot for from ... where ... select

    0 讨论(0)
  • 2020-12-23 15:50

    Your Sample1 is top level representation of Linq, it is more readable, and while compiling it'll converted to expression tree i.e your Sample2.

    var x = from s in db.Surveys
        join sq in db.Survey_Questions on s.ID equals sq.Survey_ID
        join q in db.Questions on sq.Question_ID equals q.ID
        join qg in db.Question_Groups on q.ID equals qg.Question_ID
        where s.Type_ID.Equals(typeID) & s.Type.Equals(type)
        select new { question = sq.Question, status = sq.Status, grp = qg };
    

    you can try below code to get expression for written query

    var exp=x.Expression;
    

    Expressions are used when query less complicated

    0 讨论(0)
  • 2020-12-23 15:53

    Query expressions and extension methods are two ways to do the exact same thing. Query expressions get transformed to extension methods when compiling - they are just syntactic sugar for people who are more comfortable with SQL.

    When you write this:

    var surveyNames = from s in db.Surveys select s.Name;
    

    The compiler transforms this into:

    IQueryable<string> surveryNames = db.Surveys.Select(s => s.Name);
    

    Really, I think query expressions were just created for marketing reasons - a SQL-like language construct to act as an eye-catcher when LINQ was developed, not something that offers much actual use. I find that most people just use the extension methods directly, as they result in a more unified coding style, instead of a mix of C# and SQL.

    0 讨论(0)
  • 2020-12-23 15:54

    The where clause in the first example is actually just syntactic sugar for the Where clause in your second method. In fact, you can write your own class that has nothing to do with Linq or IQueryable and just by having a Where method, you can use that syntactic sugar. For example:

        public class MyClass
        {
    
            public MyClass Where<T>(Func<MyClass, T> predicate)
            {
                return new MyClass { StringProp = "Hello World" };
            }
    
            public MyClass Select<T>(Func<MyClass, T> predicate)
            {
                return new MyClass ();
            }
    
    
    
            public string StringProp { get; set; }
        }
    

    This is obviously a stupid example, but note that there's a Where method that just returns a new MyClass with stringprop set to Hello World. To demonstrate:

    MyClass a = new MyClass();
                var q = from p in a
                        where p.StringProp == "foo" // doesnt matter what we put here, as we're not really checking the predicate
                        select p;
                Console.WriteLine(q.StringProp);
    

    This will result in writing out "Hello World". Again, this example is obviously pointless, but it proves the point that the "where" syntax just looks for a Where method in your code that takes a Func.

    0 讨论(0)
  • 2020-12-23 15:55

    I think your question is better phrased like this, "What is the difference between IEnumerable<T> and IQueryable<T> with respect to LINQ"

    LINQ queries return an IQueryable<T> by default. IQueryable<T> allows you to append other filters or "clauses" onto your query before you execute it.

    Your LINQ query (first example) and your LINQ using method chaining (second example) produce the same result, with different syntax.

    It is possible to write a LINQ query as a LINQ method chain and visa versa. It really depends on your preference.

    @Lucas: The different is IEnumerable<T> does in-memory querying and IQueryable<T> does out-of-memory. Meaning, once you are in a foreach iterator, you are using IEnumerable, and when you are building your query, via either extension methods or using LINQ from o in object synatax, you are building an IQueryable<T>. The IQueryable<T> is executed as soon as you touch the Enumerator.

    0 讨论(0)
提交回复
热议问题