Home / ASP.NET Weblogs

Browse by Tags

Related Posts

  • LINQ With C# Book

    Luís just broke the news on our LINQ with C# book. I was honored with the invitation from Luís to write this book with him for FCA , for which he has already published a few books [ ^ ] [ ^ ] [ ^ ] before. This will be an entry level book in Portuguese targeted to anyone wanting to learn LINQ with C#...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 09-22-2008, 12:00 AM
    Filed under: SoftDev, Microsoft, .NET, C#, LINQ, Books
  • More On Another Way For Using The “using” Keyword

    In the past I presented another possible use for the using keyword: as hints on LINQ . I’ve been giving some thought about this lately and refined my proposal. var q = from person in personCollection using MyEnumerableExtensions group person by person.LastName into g using new MyOtherComparer () orderby...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 08-11-2008, 12:00 AM
    Filed under: SoftDev, MSDN, Microsoft, .NET, C#, LINQ
  • C# And Visual Basic Generate Different Expression Trees

    (This was pointed out to me by Frans Bouma and explained by Jon Skeet ) Imagine you have this set of classes: public class A { public virtual string P { get { return "A" ; } } } public class B : A { } public class C : B { public override string P { get { return "C" ; } } } And this class: public static...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 08-04-2008, 12:00 AM
    Filed under: SoftDev, MSDN, Microsoft, .NET, C#, LINQ, VisualBasic
  • My Silverlight talk at Microsoft Innovation Briefing

    This morning I did a Silverlight 2 talk at Microsoft Montreal, during a half-day briefing called Building Compelling Websites on the Microsoft Platform . That was a 1 hour talk to present Silverlight 2, DeepZoom, Expression Blend and create from scratch a Silverlight 2 application which consume LINQ...
    Posted to Laurent Duveau (Weblog) by pluginbaby on 05-23-2008, 12:00 AM
    Filed under: Web Development, Events, Speaking, Microsoft, WCF, Montreal, Linq, Silverlight
  • Our First ASP.NET 3.5 Site Goes Live!!

    Hello All, UPDATE 20080409: Another site has launced, check out www.betts.com.au !!! Thanks Stefan ---------------------------------------------------------------------- Finally our first ASP.NET 3.5 website went live today, there are 2 more to come but this one is the only one live atm: http://www.zushoe...
    Posted to Stefan Sedich's Blog (Weblog) by stefan.sedich on 04-03-2008, 12:00 AM
    Filed under: AJAX, ASP.NET, MICROSOFT, .NET 3.5, LINQ
  • Book Review: Linq Quickly by N Satheesh Kumar

    This books title does not lie, it is LINQ and it is quickly. This book is an excellent introduction into the world of LINQ and also a great reference once you get your feet wet. The start of the book gives you a brief introduction into what LINQ is and also an introduction into the new features in C#...
    Posted to Stefan Sedich's Blog (Weblog) by stefan.sedich on 03-26-2008, 12:00 AM
    Filed under: MICROSOFT, .NET 3.5, LINQ, C#
  • A Templated ASP.NET RSS Feed Reader Control

    Update 20070330: By popular demand (well a couple people) I have included a sample project with everything needed to get started using this control. Basically just a sample web project, click here to get the zipped archive. You might notice things are done a little different, I include the System.ServiceModel...
    Posted to Stefan Sedich's Blog (Weblog) by stefan.sedich on 03-18-2008, 12:00 AM
    Filed under: ASP.NET, MICROSOFT, .NET 3.5, LINQ, C#, XML, UserControl, RSS
  • Different SQL between C# and vb.net using LINQ to SQL causes performance issues

    Hi All, I am currently working on a project and we are using VB.NET, I am using LINQ to SQL for my data access. I have just implemented my search query and thought I would check the generated SQL's execution plan and found that the subtree cost was about 7.3. I know that I get different SQL between C#...
    Posted to Stefan Sedich's Blog (Weblog) by stefan.sedich on 02-07-2008, 12:00 AM
    Filed under: ASP.NET, .NET, MICROSOFT, .NET 3.5, SQL, LINQ, C#, VB.NET
  • TypeMock: How to Make Reflective Mocks More Natural

    Like I said before , this as been on the back of my mind for a while. A while back I introduced a way to get the MethodInfo of a method in a strongly typed way using LINQ , and that's how I'm going to make Reflective Mocks more Natural . Well, it's as easy as this: public static class MockExtender {...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 01-31-2008, 12:00 AM
    Filed under: UnitTests, Testing, TypeMock, Tools, SoftDev, MVP, MSDN, Microsoft, .NET, C#, LINQ
  • Gotcha with linq and paging

    Hey All, Had a query which I was paging on the front end. I knew that a certain product was meant to be in my display but could not see it. But on page 2 a product would repeat itself. Odd, got into profiler and looked at the queries. The first page would get a select top 9 which would not do any orderby...
    Posted to Stefan Sedich's Blog (Weblog) by stefan.sedich on 01-22-2008, 12:00 AM
    Filed under: ASP.NET, .NET, MICROSOFT, .NET 3.5, SQL, LINQ, C#
Page 1 of 3 (29 items) 1 2 3 Next >