Archive for November, 2009

LINQ

I started doing some strange C# LINQ coding today. The syntax compared to the usual C# that I’m used to is unusual.

var record = from a in Service.tbl_a
   join b in Service.tbl_b on record.field equals b.tbl_a.field
   where record.boolField
   orderby record.field
   select record;

Comments off

MSDN Subscription Software Use Rights

It’s good to periodically review the [MSDN Subscription Use Rights].


“MSDN Subscription Software Use Rights

MSDN subscriptions are licensed on a per-user basis. One person can use the software to design, develop, test, or demonstrate his or her programs on any number of devices. Each person who uses the software this way needs a license…”

Comments off