Home / ASP.NET Weblogs

Browse by Tags

Related Posts

  • LINQ Cheat Sheet

    A while ago when I was learning LINQ I searched the web for a 'cheat sheet'. I needed a single document that covered most of the common scenarios w.r.t LINQ so that I would not need to google every time I was writing LINQ queries. I found one very good one : http://aspnetresources.com/blog/linq_sqo__cheat_sheet...
    Posted to BradVin's .Net Blog (Weblog) by bradvin on 11-01-2008, 12:00 AM
    Filed under: C#, .NET 3.5, LINQ
  • Paging with NHibernate using a custom Extension method to make it 'easier' :)...

    Update 20081022: I have updated the articles code to reflect the bug fixes kindly suggested by Paco :). I have now used this in my project and have had no issues with it yet. The fixes included clearing order by's on the count query and also returning the count as an Int64. Cheers Stefan -----------...
    Posted to Stefan Sedich's Blog (Weblog) by stefan.sedich on 10-03-2008, 12:00 AM
    Filed under: ASP.NET, .NET 3.5, LINQ, C#, NHibernate
  • Bokrecension – LINQ Quickly

    Innehållsförteckning Overview LINQ to Objects LINQ to XML LINQ to SQL LINQ over DataSet LINQ to XSD Standard Query Operators Appendix A: Building an ASP.NET Application Appendix B: LINQ with Outlook I LINQ Quickly från Packt Publishing går N Satheesh Kumar igenom de flesta funktioner som finns i Linq...
    Posted to Mikael Söderström (Weblog) by Vimpyboy on 10-01-2008, 12:00 AM
    Filed under: C#, .NET 3.5, Linq, Bokrecension
  • LINQ to Entities – Join Queries

    This is my first project on LINQ, and I got surprised on how tuff it is to build join queries. But the trick is to understand how the LINQ to Entities work. I will discuss in this blog some of the complicated queries that I built and how I built them. But let's first understand how the LINQ to Entities...
    Posted to Salim Fayad (Weblog) by The Eagle on 07-09-2008, 12:00 AM
    Filed under: ASP.NET, .NET 3.5, Linq to Entities, Linq, C#
  • 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
  • ASP.NET Ajax using a custom ViewManager to render paged data without updatepanels

    Sometimes you do not want the overhead of using an updatepanel, as each time you make a request it is posting more back than you might need, sure it can be powerful and easy to use but not always the most effective way Say you would like to be able to not use viewstate or postbacks but would like to...
    Posted to Stefan Sedich's Blog (Weblog) by stefan.sedich on 03-17-2008, 12:00 AM
    Filed under: Javascript, AJAX, ASP.NET, .NET, .NET 3.5, LINQ, C#
  • Different SQL between VB.NET and C# LINQ to SQL SOLVED!!

    Hi All, Following my previous post I have solved this issue. Somehow accidently I discovered that if the field has allow nulls set on it VB.NET will add the Where Coalesce in your query hence in my case slowing it down dramatically. It seems that C# does not do this. So finally I have my VB.NET sql comming...
    Posted to Stefan Sedich's Blog (Weblog) by stefan.sedich on 02-12-2008, 12:00 AM
    Filed under: ASP.NET, .NET, .NET 3.5, SQL, LINQ, C#, VB.NET
  • 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
  • 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 2 (20 items) 1 2 Next >