Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:Why bother? (Score 1) 421

.NET places no requirements on MSSQL. Me personally, I store my data in a mix of MSSQL. Postgres, SQLite, Cassandra, Lucene (the Java version), and yes, even Firebird (and I absolutely do NOT recommend Firebird).

If you want to host ASP.NET code on Linux, there are various ways to host Mono's version, using Apache, Nginx, and other servers: http://www.mono-project.com/do...

Once .NET Core actually exists, we'll see what the hosting story looks like. I imagine it'll look a lot like Mono's.

Comment Re:Quoted from TFA (Score 1) 200

No, he was merely giving that as an example of the power one senator has. In this case, it wasn't that a cancellation bill was placed on hold, it was that the amendment sponsored by Wicker was passed, directing NASA to finish it.

Comment Re:Death knoll for Java (Score 1) 187

LINQ, or the Enumerable extension methods? Results (can be) similar, language is very different.

The enumerable extension methods plus lambdas is more similar to Java's stream API, but only an insane person would prefer Java's implementation. As for LINQ (the DSL for working with the same methods), it's FAR less common. I rarely see it in practice, and I don't generally prefer it.

Comment Re:Desparate Microsoft pulls a "Sun Microsystems" (Score 1) 525

It's not using Linq. It's using a set of extension methods and lambda expressions. Linq is a whole other DSL ("from x in myVehicles...") that I rarely see used.

Lambda expressions are simply syntactic sugar for anonymous methods.

It's distressing to me that you claim to be a C# developer and can't "wrap your head around" lambdas, which you also confuse with Linq. Hopefully you have an MSDN subscription and can take advantage of some of the new free PluralSight training, because you clearly need it. I wouldn't hire you.

Slashdot Top Deals

Understanding is always the understanding of a smaller problem in relation to a bigger problem. -- P.D. Ouspensky

Working...