Browse by Tags

Related Posts

  • Code from My ASP.NET Connections Talks

    I finished up my talks at ASP.NET Connections yesterday and wanted to get the code posted as well as links for the additional topics covered in the Silverlight animation session.  Here they are: Building N-Tier ASP.NET Applications with LINQ Code Silverlight 2 Animations Code SilverlightFX Farseer...
    Posted to Dan Wahlin's WebLog (Weblog) by dwahlin on 11-13-2008, 12:00 AM
    Filed under: ASP.NET, .NET, C#, Silverlight, LINQ, Lambdas
  • LINQ Tips #7 Create a LINQ to Anything(3)

    Yesterday, we implemented a simple LINQ to Objects pattern. In our post , we overwrote the  data source , if you can remember, all the return value were added a tail as "LINQ". But this seems useless, in the NFlickr project, we need to send the filter to the Flickr service and get the...
    Posted to Technetguy.com/blog (Weblog) by RobertNet on 11-11-2008, 12:00 AM
    Filed under: LINQ, C#
  • LINQ Tips #6 Create a LINQ to Anything(2)

    Yesterday, we sort of created a baby step of a LINQ to anything implementation ; We stopped at the place to implement the interface IQueryProvider, the most important method in this interface for us is IQueryable<TElement> CreateQuery<TElement>(System.Linq.Expressions.Expression expression...
    Posted to Technetguy.com/blog (Weblog) by RobertNet on 11-10-2008, 12:00 AM
    Filed under: LINQ, C#
  • LINQ Tips #5 Creating a LINQ To Anything

    We knew there are at least 3 implementation in .Net 3.5, they are LINQ to Objects, LINQ to XML and LINQ to SQL. I don't believe Microsoft will create different pattern for those. In my current open source project NFlickr , because I have thousands of the fotos at flickr.com , so I don't want to get everything...
    Posted to Technetguy.com/blog (Weblog) by RobertNet on 11-10-2008, 12:00 AM
    Filed under: LINQ, C#
  • LINQ Tips #1--Get a list of interface

    In the most of the case, we can use the LINQ to filter out a list of the object collection. But if we are designing a framework which means we will use the interface talk to each other. The collection has to be the container of a set of interface which will need some tricks to finish this job. The interface...
    Posted to Technetguy.com/blog (Weblog) by RobertNet on 11-10-2008, 12:00 AM
    Filed under: LINQ, C#
  • Server-side Office Integration -7 (Conclusion)

    Voow, I am almost done. On this Sunday night, at Panera, I have enjoyed writing while listening to the jazz and drinking coups of tea (3, so far). Alright, let's summarize briefly what we have done so far in these series: After giving some intro, In this complete but simple web application, we import...
    Posted to Mecit Atmaca (Weblog) by atmacam on 11-03-2008, 12:00 AM
    Filed under: C#, Design Patterns, SOA, AJAX, WCF, LINQ, Agile, CLR, Biztalk, SQL Server
  • 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
  • Linq to SQL: Delete an entity using Primary Key only

    Linq to Sql does not come with a function like .Delete(ID) which allows you to delete an entity using it’s primary key. You have to first get the object that you want to delete and then call .DeleteOnSubmit(obj) to queue it for delete. Then you have to call DataContext.SubmitChanges() to play the delete...
    Posted to Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5 (Weblog) by oazabir on 10-30-2008, 12:00 AM
    Filed under: performance, C#, LINQ
  • LINQ to Concurrency Problems

    LINQ to SQL is fascinating - the more I work with it, the more I hate it, and then love it again all at the same time. Recently we had an issue while using it in a slightly older version of our N-Tier WCF application which uses LINQ to SQL as it's primary ORM solution (yes, I know). I'll try to briefly...
    Posted to i have a framework... (Weblog) by fdumlao on 10-28-2008, 12:00 AM
    Filed under: WCF, ASP.NET, .NET, LINQ, C#, LINQ to SQL
  • Solving common problems with Compiled Queries in Linq to Sql for high demand ASP.NET websites

    If you are using Linq to SQL, instead of writing regular Linq Queries, you should be using Compiled Queries . if you are building an ASP.NET web application that’s going to get thousands of hits per hour, the execution overhead of Linq queries is going to consume too much CPU and make your site slow...
    Posted to Omar AL Zabir blog on ASP.NET Ajax and .NET 3.5 (Weblog) by oazabir on 10-28-2008, 12:00 AM
    Filed under: .net, asp.net, C#, LINQ
Page 1 of 19 (184 items) 1 2 3 4 5 Next > ... Last »
Microsoft Communities