User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T02:30:10Zhttp://stackoverflow.com/feeds/user/46223http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1851219/how-to-add-multiple-query-folders-in-linqpad/1857122#18571221Answer by albahari for How to add multiple query folders in LINQPad?albahari2009-12-07T00:20:51Z2009-12-07T00:20:51Z<p>There's no way to display more than one root folder in 'My Queries' at present. If you like, add a suggestion at linqpad.uservoice.com so we can guage demand.</p>
http://stackoverflow.com/questions/1671253/how-do-i-view-an-expression-tree-with-linqpad/1684778#16847781Answer by albahari for How do I view an expression tree with LINQPad?albahari2009-11-06T01:10:54Z2009-11-06T01:10:54Z<p>You can view the objects that make up the expression tree as follows:</p>
<pre><code>(from word in "The quick brown fox jumps over the lazy dog".Split().AsQueryable()
orderby word.Length
select word).Expression
</code></pre>
http://stackoverflow.com/questions/996233/c-how-to-equate-the-elements-of-two-array/996518#9965181Answer by albahari for c# how to equate the elements of two arrayalbahari2009-06-15T14:44:24Z2009-06-15T14:44:24Z<p>This is a one-liner with LINQ:</p>
<pre><code>bool same = !array1.Except (array2).Any() && !array2.Except (array1).Any();
</code></pre>
<p>Alternatively, you could call OrderBy on each sequence to sort them in the same order and then use Enumerable.SequenceEqual to compare them:</p>
<pre><code>bool same = Enumerable.SequenceEqual (array1.OrderBy (n => n), array2.OrderBy (n => n));
</code></pre>
http://stackoverflow.com/questions/923969/how-can-i-match-this-text-with-a-regex/924068#9240681Answer by albahari for How can i match this text with a regex?albahari2009-05-29T01:54:21Z2009-05-29T01:59:41Z<p>The following will do the trick:</p>
<pre><code>/\*<parameters>\*/(.|\r|\n)*/\*</parameters>\*/
</code></pre>
<p>Alternatively, if you want to exclude the outer tokens from the match itself:</p>
<pre><code>(?<=/\*<parameters>\*/)(.|\r|\n)*(?=/\*</parameters>\*/)
</code></pre>
http://stackoverflow.com/questions/510531/your-favorite-linq-to-objects-queries4Your Favorite LINQ-to-Objects Queriesalbahari2009-02-04T08:33:37Z2009-05-21T06:45:23Z
<p>With LINQ, a lot of programming problems can be solved more easily - and in fewer lines of code.</p>
<p>What are some the best real-world <strong>LINQ-to-Objects</strong> queries that you've written? </p>
<p>(Best = simplicity & elegance compared to the C# 2.0 / imperative approach).</p>
http://stackoverflow.com/questions/870698/linq-multiple-columns-getting-weird-results/871861#8718611Answer by albahari for linq multiple columns; getting weird resultsalbahari2009-05-16T07:02:54Z2009-05-16T07:02:54Z<p>That query looks OK - what results were you expecting?</p>
<p>Btw, here's a simpler way to write the same query:</p>
<pre><code>var results =
m.PlacesBeen.Select (loc => new {locs.Lat, locs.Lon }).Distinct();
</code></pre>
http://stackoverflow.com/questions/855673/strange-behavior-in-formborderstyle-between-fixed-and-sizable/855694#8556941Answer by albahari for Strange behavior in FormBorderStyle between Fixed and Sizablealbahari2009-05-13T01:41:15Z2009-05-13T01:41:15Z<p>I suspect what's happening is that Windows Forms is keeping the client size (i.e. inner area) the same while the border size changes. This is generally a good thing because it ensures that the window can still correctly fit the content that you've put on it.</p>
<p>If you want to maintain the same outer dimensions, you could work around it by saving the size to a variable before changing the border type, and then restoring it back. They'll probably a slight flicker, though.</p>
http://stackoverflow.com/questions/855676/does-sqldatareader-store-everything-as-a-string/855683#8556837Answer by albahari for Does SqlDataReader store everything as a String?albahari2009-05-13T01:36:57Z2009-05-13T01:36:57Z<p>SqlDataReader returns data as strongly-typed objects - just call the right method, e.g.:</p>
<p>data.GetDateTime(ordinal)</p>
http://stackoverflow.com/questions/852024/whats-the-difference-between-a-stored-procedure-and-a-table-valued-function/852134#8521341Answer by albahari for whats the difference between a stored procedure and a table valued function?albahari2009-05-12T10:30:26Z2009-05-12T10:30:26Z<p>Table-valued functions can return only a single result set; SPs can return multiple result sets.</p>
<p>You can subsequently query over the results of table-valued functions - but not with SPs.</p>
<p>So table-valued functions are more flexible if you don't need multiple result sets.</p>
http://stackoverflow.com/questions/843069/whats-the-difference-between-just-using-multiple-froms-and-joins/843075#8430750Answer by albahari for What's the difference between just using multiple froms and joins?albahari2009-05-09T10:17:10Z2009-05-09T10:17:10Z<p>Join syntax allows for outer joins, so you can go:</p>
<pre><code>SELECT bugs.id, bug_color.name
FROM bugs, bug_color
LEFT OUTER JOIN bug_color ON bugs.id = bug_color.id
WHERE bugs.id = 1
</code></pre>
http://stackoverflow.com/questions/838809/linq-match-word-with-boundaries/839988#8399880Answer by albahari for linq match word with boundariesalbahari2009-05-08T14:16:16Z2009-05-08T14:22:00Z<p>For efficiency, you want to do as much of the filtering as possible on the server, and then the rest of the filtering on the client. You can't use Regex on the server (SQL Server doesn't support it) so the solution is to first use a LIKE-type search (by calling .Contains) then use Regex on the client to further refine the results:</p>
<pre><code>db.MyTable
.Where (t => t.MyField.Contains ("abc"))
.AsEnumerable() // Executes locally from this point on
.Where (t => Regex.IsMatch (t.MyField, @"\babc\b"))
</code></pre>
<p>This ensures that you retrieve only the rows from SQL Server than contain the letters 'abc' (regardless of whether they're a word-boundary match or not) and use Regex on the client-side to further restrict the result set so that only matches that are on word boundaries are included.</p>
http://stackoverflow.com/questions/825280/what-is-the-preferred-process-for-sellling-a-personal-project-product/825417#8254177Answer by albahari for What is the preferred process for sellling a personal project/product?albahari2009-05-05T15:24:37Z2009-05-05T15:24:37Z<p>Some tips:</p>
<p>Obfuscation: Be wary of obfuscating everything. An alternative is to obfuscate just the critical bits (licensing, premium features). The problem with obfuscating everything is that stack traces from error reports are ineffective. When an unexpected exception is caught, you'll want to give the user the option of automatically reporting its details - this really helps with QC.</p>
<p>License enforcement: If it's a utility that can be easily pirated, people WILL pirate it. An activations-based licensing system is ideal - and if it's not too draconian people will be less motivated to circumvent it. For instance, allow at least 3 activations per user (home computer, work computer, laptop). If it's a control library, then an activation-based may not be required - baking the serial number into the library may be enough because customers are unlikely to build their own product on a stolen assembly.</p>
<p>Instant/automated purchases: writing a custom licensing server and web page for this is fairly easy - you need only about 3 tables. LINQ to SQL is ideal for this sort of thing. For the payment gateway, I use PayPal - it's very easy to set up, has the features you need for selling activation codes, and allows multiple currencies. If you use PayPal, enable both PDT and IPN so you can give customers their activation codes both on the screen and via e-mail.</p>
<p>Marketing: try LOTS of things simultaneously - because it's hard to predict the success of any campaign. Especially without experience! Making yourself known amongst the influential people in the field into which you're selling can work very well.</p>
<p>Advertising: advertise on StackOverflow - that's what I'm doing! Google ad words is also worth trying because it's so cheap to set up - you'll know after spending $10 whether it will be effective for you or not.</p>
<p>And good luck with it!</p>
http://stackoverflow.com/questions/458802/doesnt-linq-to-sql-miss-the-point-arent-orm-mappers-subsonic-etc-sub-opti/824258#824258-1Answer by albahari for Doesn't Linq to SQL miss the point? Aren't ORM-mappers (SubSonic, etc.) sub-optimal solutions?albahari2009-05-05T10:24:21Z2009-05-05T10:24:21Z<p>Most people have missed an essential point: in most cases, you are <strong>significantly more productive</strong> when querying in LINQ than in SQL. I've <a href="http://www.linqpad.net/WhyLINQBeatsSQL.aspx" rel="nofollow">written an article</a> on why this is so.</p>
<p>When I set the LINQPad Challenge, I wasn't joking: I do nearly all of my ad-hoc querying in LINQ because most queries can be written more quickly and reliably in LINQ than in SQL. I've also designed and worked on large business applications using LINQ to SQL and seen a major gains in productivity. This is not "architecture astronaut" stuff - LINQ to SQL is a productive and practical technology that <strong><a href="http://blog.stackoverflow.com/2008/09/what-was-stack-overflow-built-with/" rel="nofollow">drives this very site</a></strong>.</p>
<p>The biggest hindrance with LINQ is failing to properly learn it. I've seen so many LINQ queries that are horrible <strong>transliterations</strong> of SQL queries to back this up. If you write LINQ queries using only your knowledge of SQL, the end result can only be the same - or worse - than SQL.</p>
http://stackoverflow.com/questions/823607/sqlmetal-generating-garbage-association-names/823956#8239561Answer by albahari for SqlMetal generating garbage association namesalbahari2009-05-05T08:56:32Z2009-05-05T09:02:18Z<p>You can instruct SqlMetal to generate a DBML file:</p>
<pre><code>SqlMetal /server:myserver /database:northwind /dbml:northwind.dbml /namespace:nwind
</code></pre>
<p>and then correct the association names in the DBML file and then generate from the DBML:</p>
<pre><code>SqlMetal /code:nwind.cs /map:nwind.map northwind.dbml
</code></pre>
<p>The only problem with doing this is that if you re-generate the DBML after updating your database, any changes to your DBML will wash out.</p>
<p>Other options:</p>
<ul>
<li>Use Visual Studio's designer (not great if your schema is large)</li>
<li>Search for a third-party tool to generate DataContexts</li>
<li>Write your own tool</li>
</ul>
<p>One further point: I've rarely seen SqlMetal emit an association name that bad. How are your columns named? Is there a conflict with another relationship name?</p>
http://stackoverflow.com/questions/214500/which-linq-syntax-do-you-prefer-fluent-or-query-expression/823155#82315512Answer by albahari for Which LINQ syntax do you prefer? Fluent or Query Expressionalbahari2009-05-05T03:15:07Z2009-05-05T03:20:12Z<p>Neither is better: they serve different needs. Query syntax comes into its own when you want to leverage <strong>multiple range variables</strong>. This happens in three situations:</p>
<ul>
<li>When using the let keyword</li>
<li>When you have multiple generators (<em>from</em> clauses)</li>
<li>When doing joins</li>
</ul>
<p>Here's an example (from the LINQPad samples):</p>
<pre><code>string[] fullNames = { "Anne Williams", "John Fred Smith", "Sue Green" };
var query =
from fullName in fullNames
from name in fullName.Split()
orderby fullName, name
select name + " came from " + fullName;
</code></pre>
<p>Now compare this to the same thing in method syntax:</p>
<pre><code>var query = fullNames
.SelectMany (fName => fName.Split().Select (name => new { name, fName } ))
.OrderBy (x => x.fName)
.ThenBy (x => x.name)
.Select (x => x.name + " came from " + x.fName);
</code></pre>
<p>Method syntax, on the other hand, exposes the full gamut of query operators and is more concise with simple queries. You can get the best of both worlds by mixing query and method syntax. This is often done in LINQ to SQL queries:</p>
<pre><code>var query =
from c in db.Customers
let totalSpend = c.Purchases.Sum (p => p.Price) // Method syntax here
where totalSpend > 1000
from p in c.Purchases
select new { p.Description, totalSpend, c.Address.State };
</code></pre>
http://stackoverflow.com/questions/810870/sql-express-2005-2008-concurrent-connections/810899#8108993Answer by albahari for SQL Express 2005/2008 Concurrent Connectionsalbahari2009-05-01T10:21:03Z2009-05-02T08:14:13Z<p>The express editions of SQL Server don't cap the number of concurrent connections - they exert limitations in other ways - such as the maximum size of the database (4GB), CPU sockets (1) and amount of memory (1GB).</p>
<p>More info <a href="http://www.microsoft.com/sqlserver/2008/en/us/editions.aspx" rel="nofollow">here</a>.</p>
<p>You are right in saying that when a connection is closed, its resources are released immediately. The only caveat on this is connection pooling in .NET.</p>
http://stackoverflow.com/questions/811042/can-o-s-tell-me-when-a-new-file-is-created/811053#8110532Answer by albahari for Can O.S tell me when a new file is created ?albahari2009-05-01T11:35:49Z2009-05-01T11:35:49Z<p>FileSystemWatcher is the answer - and it works recursively.</p>
<p>There's an example <a href="http://www.albahari.com/nutshell/ch13.aspx" rel="nofollow">here</a> (search for FileSystemWatcher)</p>
http://stackoverflow.com/questions/811011/how-can-i-create-generic-datacontext-with-linq/811026#8110260Answer by albahari for How can I create generic datacontext with linqalbahari2009-05-01T11:19:17Z2009-05-01T11:19:17Z<p>If you need this level of dynamic querying, LINQ is probably the wrong technology. One of LINQ's major benefits is static typing - which is usually a plus. Misspell a column in your code and you'll get a compile-time error rather than a run-time error.</p>
<p>But if you need to be able to handle arbitrary changes to the database schema without a recompilation, you'll be fighting the API. Go instead with standard ADO.NET instead (DataReaders, DataAdapters, etc).</p>
http://stackoverflow.com/questions/810830/what-are-your-favorite-small-handy-utility-programs-tools-helping-you-programmi/810882#8108821Answer by albahari for What are your favorite small handy utility programs (tools) helping you programming ? albahari2009-05-01T10:14:54Z2009-05-01T10:14:54Z<p>Paint.NET and Notepad++.</p>
<p>Paint.NET - use this often for writing or tweaking graphics (Visual Studio provides little in the way of decent graphics editing). Paint.NET is great for making transparent PNGs or GIFs - click the "Magic wand" tool to select the area you want to make transparent, and then hit Delete.</p>
<p>NotePad++ for the ability to right-click any file of any size and view its raw contents - bypassing the default viewer for the file.</p>
http://stackoverflow.com/questions/810726/setting-defaultvalue-for-properties-of-non-constant-types/810740#8107402Answer by albahari for Setting DefaultValue for properties of non-Constant types?albahari2009-05-01T09:11:40Z2009-05-01T09:11:40Z<p>Instead of applying the DefaultValue attribute, write the following two methods:</p>
<pre><code>bool ShouldSerializemySize() { ... }
void ResetmySize() { ... }
</code></pre>
<p>In ShouldSerializemySize, return true if the value should be serialized to code. In ResetmySize, reset the property to its default value.</p>
<p>The component designer will automatically pick up these methods via reflection.</p>
<p>More info here:
<a href="http://msdn.microsoft.com/en-us/library/53b8022e%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/53b8022e(VS.71).aspx</a></p>
http://stackoverflow.com/questions/810693/net-3-5-vs-net-3-0/810700#8107001Answer by albahari for .NET 3.5 vs. .NET 3.0albahari2009-05-01T08:58:46Z2009-05-01T08:58:46Z<p>You're right: there is definitely an advantage in not requiring that users download another framework.</p>
<p>A couple of tips: if you're going to target FW3.0, you can still use Studio 2008 rather than Studio 2005 - and the C# 3.0 or VB 9.0 compilers. Simply set the target Framework to 3.0 in project properties. Also, you can still use LINQ to Objects with LINQBridge.</p>
<p>If you're accessing a database, you will miss out on LINQ to SQL (or Entity Framework), which I've found really simplifies development of the middle tier. For me, that would be a reason to favour Framework 3.5.</p>
http://stackoverflow.com/questions/810442/whats-the-most-efficient-way-to-determine-whether-an-untrimmed-string-is-empty-i/810449#8104492Answer by albahari for What's the most efficient way to determine whether an untrimmed string is empty in C#?albahari2009-05-01T06:57:22Z2009-05-01T07:05:47Z<p>Checking the length of a string for being zero is the most efficient way to test for an empty string, so I would say number 1:</p>
<pre><code>if (myString.Trim().Length == 0)
</code></pre>
<p>The only way to optimize this further might be to avoid trimming by using a compiled regular expression (Edit: this is actually much slower than using Trim().Length).</p>
<p>Edit: The suggestion to use Length came from a FxCop guideline. I've also just tested it: it's 2-3 times faster than comparing to an empty string. However both approaches are still extremely fast (we're talking nanoseconds) - so it hardly matters which one you use. Trimming is so much more of a bottleneck it's hundreds of times slower than the actual comparison at the end.</p>
http://stackoverflow.com/questions/809934/assembly-loadfrom-using-evidence-overload-to-verify-strong-name-signature/810004#8100041Answer by albahari for Assembly.LoadFrom - using Evidence overload to verify strong name signaturealbahari2009-05-01T02:46:24Z2009-05-01T02:59:17Z<p>You can get an Assembly's public key after loading it - if it loads successfully and has a public key, then it's strong-named:</p>
<pre><code>Assembly assembly = Assembly.LoadFrom (...);
byte[] pk = assembly.GetName().GetPublicKey();
</code></pre>
<p>Better still, check the assembly's public key and version info <em>before</em> loading it:</p>
<pre><code>AssemblyName an = AssemblyName.GetAssemblyName ("myfile.exe");
byte[] publicKey = an.GetPublicKey();
CultureInfo culture = an.CultureInfo;
Version version = an.Version;
</code></pre>
<p>If GetPublicKey() returns a non-null value, and then the assembly successfully loads, it has a valid strong name.</p>
http://stackoverflow.com/questions/804273/linq-query-syntax-to-lambda/809861#8098612Answer by albahari for LINQ Query Syntax to Lambdaalbahari2009-05-01T01:22:22Z2009-05-01T01:22:22Z<p>Simply go:</p>
<pre><code>string lambdaSyntax = query.Expression.ToString();
</code></pre>
<p>The disadvantage compared to LINQPad is that the result is formatted all one line.</p>
http://stackoverflow.com/questions/754983/getting-types-in-mscorlib-2-0-5-0-aka-silverlight-mscorlib-via-reflection-on/772657#7726574Answer by albahari for Getting types in mscorlib 2.0.5.0 (aka Silverlight mscorlib) via reflection on?albahari2009-04-21T13:44:18Z2009-04-21T13:44:18Z<p>Assuming you're trying to reflect over Silverlight's mscorlib from the standard CLR, this won't work because the CLR doesn't permit loading multiple versions of mscorlib. (Perhaps this is because it could upset resolution of its core types).</p>
<p>A workaround is to use Mono.Cecil to inspect the types:
<a href="http://mono-project.com/Cecil" rel="nofollow">http://mono-project.com/Cecil</a>. This library actually performs better than .NET's Reflection and is supposed to be more powerful.</p>
<p>Here's some code to get you started:</p>
<pre><code>AssemblyDefinition asm = AssemblyFactory.GetAssembly(@"C:\mscorlib.dll");
var types =
from ModuleDefinition m in asm.Modules
from TypeDefinition t in m.Types
select t.Name;
</code></pre>
http://stackoverflow.com/questions/754422/oop-naming-tcp-vs-tcp-prefix/754434#7544341Answer by albahari for OOP Naming: TCP vs.Tcp prefixalbahari2009-04-16T01:21:53Z2009-04-16T01:21:53Z<p>Generally, when it's a 2-character prefix, leave it uppercase (IPAddress) and when it's 3 characters or more, Pascal-case the prefix (TcpXxxx).</p>
<p>There are a few exceptions to this rule (e.g., if a prefix is a proper name that's uppercase).</p>
http://stackoverflow.com/questions/751744/thoughts-on-try-catch-blocks/751778#7517781Answer by albahari for Thoughts on try-catch blocksalbahari2009-04-15T13:48:55Z2009-04-15T13:48:55Z<p>Sometimes this is appropriate - when you're going to handle the exception higher up in the call stack. However, you'd need to do something in that catch block other than just re-throw for it to make sense, e.g. log the error:</p>
<pre><code>public void doSomething()
{
try
{
// actual code goes here
}
catch (Exception ex)
{
LogException (ex); // Log error...
throw;
}
}
</code></pre>
http://stackoverflow.com/questions/743885/how-can-i-determine-whether-console-out-has-been-redirected-to-a-file/743930#7439301Answer by albahari for How can I determine whether Console.Out has been redirected to a file?albahari2009-04-13T13:48:55Z2009-04-13T13:54:06Z<p>You need to use reflection - a bit grubby but the following will work:</p>
<pre><code>static bool IsConsoleRedirected()
{
var writer = Console.Out;
if (writer == null || writer.GetType ().FullName != "System.IO.TextWriter+SyncTextWriter") return true;
var fld = writer.GetType ().GetField ("_out", BindingFlags.Instance | BindingFlags.NonPublic);
if (fld == null) return true;
var streamWriter = fld.GetValue (writer) as StreamWriter;
if (streamWriter == null) return true;
return streamWriter.BaseStream.GetType ().FullName != "System.IO.__ConsoleStream";
}
</code></pre>
http://stackoverflow.com/questions/10524/expression-invoke-in-entity-framework/718366#7183663Answer by albahari for Expression.Invoke in Entity Framework?albahari2009-04-05T04:56:19Z2009-04-05T04:56:19Z<p><a href="http://www.albahari.com/nutshell/predicatebuilder.aspx" rel="nofollow">PredicateBuilder</a> and <a href="http://www.albahari.com/nutshell/linqkit.aspx" rel="nofollow">LINQKit</a> now support Entity Framework.</p>
<p>Sorry, guys, for not doing this earlier!</p>
http://stackoverflow.com/questions/1233304/using-linqpad-as-primary-query-tool/1233430#1233430Comment by on Using linqpad as primary query tool2009-08-06T05:32:29Z2009-08-06T05:32:29ZIf you click the SQL tab in LINQPad, there's a button to open the SQL translation directly in SQL Management Studio. From there, it's usually just one click to get the execution plan.http://stackoverflow.com/questions/1233304/using-linqpad-as-primary-query-toolComment by on Using linqpad as primary query tool2009-08-06T05:31:14Z2009-08-06T05:31:14ZI'm certainly committed to developing LINQPad. There's already a Framework 4.0 build, and plenty of new features are scheduled in the coming months. Joe (LINQPad author)http://stackoverflow.com/questions/458802/doesnt-linq-to-sql-miss-the-point-arent-orm-mappers-subsonic-etc-sub-opti/824258#824258Comment by on Doesn't Linq to SQL miss the point? Aren't ORM-mappers (SubSonic, etc.) sub-optimal solutions?2009-07-24T09:49:00Z2009-07-24T09:49:00ZHere's a simple example:
<a href="http://social.msdn.microsoft.com/Forums/en-US/linqprojectgeneral/thread/eaa0f5f9-a998-4d77-9726-979ca903540b" rel="nofollow">social.msdn.microsoft.com/Forums/en-US/…</a>http://stackoverflow.com/questions/1153987/linq-query-with-left-join-and-group/1154858#1154858Comment by on Linq query with left join and group2009-07-22T11:55:47Z2009-07-22T11:55:47ZIt's unlikely that you need anything remotely this complicated. Check out Ryan's answer.http://stackoverflow.com/questions/996233/c-how-to-equate-the-elements-of-two-array/996518#996518Comment by on c# how to equate the elements of two array2009-06-15T14:55:33Z2009-06-15T14:55:33ZYes - you're quite correct. Given the question, Except() won't do the job.http://stackoverflow.com/questions/838809/linq-match-word-with-boundaries/838854#838854Comment by on linq match word with boundaries2009-05-09T10:49:46Z2009-05-09T10:49:46ZThis will be HORRIBLY inefficient if the table contains lots of rows - because it will fetch every row from SQL Server to the client.http://stackoverflow.com/questions/804273/linq-query-syntax-to-lambda/809861#809861Comment by on LINQ Query Syntax to Lambda2009-05-09T10:45:22Z2009-05-09T10:45:22ZIt's better than what you see in Reflector - and it's as good as you'll get without third party tools.http://stackoverflow.com/questions/843069/whats-the-difference-between-just-using-multiple-froms-and-joins/843075#843075Comment by on What's the difference between just using multiple froms and joins?2009-05-09T10:42:23Z2009-05-09T10:42:23Z*= is not normally supported in SQL Server or in ANSI SQL.http://stackoverflow.com/questions/458802/doesnt-linq-to-sql-miss-the-point-arent-orm-mappers-subsonic-etc-sub-opti/458864#458864Comment by on Doesn't Linq to SQL miss the point? Aren't ORM-mappers (SubSonic, etc.) sub-optimal solutions?2009-05-05T09:53:09Z2009-05-05T09:53:09ZQuite the reverse - most queries become <i>simpler</i> in LINQ. The problem is that many people fail to properly learn LINQ and so they their <i>transliterate</i> their SQL queries into LINQ - and of course then you can only lose and never gain.http://stackoverflow.com/questions/426889/where-to-draw-the-line-is-it-possible-to-love-linq-too-much/429535#429535Comment by on Where to draw the line - is it possible to love LINQ too much?2009-05-05T04:21:25Z2009-05-05T04:21:25ZThis is completely untrue. LINQ's join operator loads all the elements in the inner sequence into an efficient hashtable-based lookup.
Your particular example is mildly inefficent in that you're filtering AFTER joining (rather than before) but the join itself is totally efficient.http://stackoverflow.com/questions/810442/whats-the-most-efficient-way-to-determine-whether-an-untrimmed-string-is-empty-i/810455#810455Comment by on What's the most efficient way to determine whether an untrimmed string is empty in C#?2009-05-01T07:14:26Z2009-05-01T07:14:26ZP.S. It might also depend on how long the (untrimmed) string was.http://stackoverflow.com/questions/810442/whats-the-most-efficient-way-to-determine-whether-an-untrimmed-string-is-empty-i/810455#810455Comment by on What's the most efficient way to determine whether an untrimmed string is empty in C#?2009-05-01T07:13:37Z2009-05-01T07:13:37ZI've just tested this method with a million iterations - it's slightly slower than using Trim(). I guess you might save a bit down the line, though, through avoiding GC.http://stackoverflow.com/questions/809934/assembly-loadfrom-using-evidence-overload-to-verify-strong-name-signature/810009#810009Comment by on Assembly.LoadFrom - using Evidence overload to verify strong name signature2009-05-01T02:53:33Z2009-05-01T02:53:33ZAre you delay-signing perhaps? If so, this will only work on machines on which you disable strong-name verification (sn -Vr) for that assembly. Otherwise, what are you doing? Has the private key for .NET framework assemblies been leaked?http://stackoverflow.com/questions/754983/getting-types-in-mscorlib-2-0-5-0-aka-silverlight-mscorlib-via-reflection-onComment by on Getting types in mscorlib 2.0.5.0 (aka Silverlight mscorlib) via reflection on?2009-04-21T09:43:39Z2009-04-21T09:43:39ZAre you doing this from Silverlight itself or the standard CLR?http://stackoverflow.com/questions/743885/how-can-i-determine-whether-console-out-has-been-redirected-to-a-file/743930#743930Comment by on How can I determine whether Console.Out has been redirected to a file?2009-04-13T14:00:40Z2009-04-13T14:00:40ZThat's why it's a bit grubbly. But it's the only option.