c# - When to ditch LINQ? -
linq seems generate horrendously optimised sql (in general). can write way more efficient t-sql myself.
do huge websites thousands of daily visitors use linq? or should linq @ point ditched? , if so, what? , when?
do huge websites thousands of daily visitors use linq?
yes. why not? sql trivial , can fall stored procedure matters.
and point. let linq handlethe easy 80% , focus on more complex.
and ther rest handle not talking database - caching not hard plan for.
Comments
Post a Comment