Home / ASP.NET Weblogs

Browse by Tags

Related Posts

  • 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
  • Best practices for using LINQ to SQL on your existing web applications.

    Previously I have been talking about the limitations of Linq to SQL for your data layer. You should read it here . This post is part of the Linq to SQL series . Linq to SQL is a great technology I found that adding the data layer on the web application will just work until you are deploying the application...
    Posted to Albert Pascual ASP.NET Blog (Weblog) by albertpascual on 06-19-2008, 12:00 AM
    Filed under: Code, C#, ASP.NET, .NET, LINQ to SQL
  • Using LINQ to SQL makes life easier. An introduction of LINQ to SQL.

    LINQ to SQL came out with 3.5 and I am still amazed that many people accomplished to stay away from that simple technology. When you ask them, they've heard about but they are not sure how everything works together. Instead of looking it up to learn to see if there is something that may improve their...
    Posted to Albert Pascual ASP.NET Blog (Weblog) by albertpascual on 04-23-2008, 12:00 AM
    Filed under: Code, C#, ASP.NET, .NET, Scott Guthrie, AJAX, LINQ to SQL
  • LINQ to SQL Extension: Batch Deletion with Lambda Expression

    Batch deletion in the O/R Mapping frameworks is always depressing. We need to query all the entities we want to delete from the database, pass them to the DeleteOnSubmit or DeleteAllOnSubmit methods of DataContext, and finally invoke SubmitChanges to delete the records form database. In this case, we...
    Posted to Happy Coding (Weblog) by JeffreyZhao on 03-06-2008, 12:00 AM
    Filed under: Lambda Expression, Batch Deletion, Expression Tree, LINQ, C#, .NET, LINQ to SQL
  • 100% Unit Testable Linq To Sql Repository

    In this post, I will show you how you can architect your Linq To Sql repository which will have 100% code coverage. I will use our favorite Northwind database along with my ongoing UnityCommonServiceLocatorMVC project. First, lets add a Linq To Sql diagram in our project and drag n drop the Category...
    Posted to Kazi Manzur Rashid's Blog (Weblog) by Kazi Manzur Rashid on 02-19-2009, 12:00 AM
    Filed under: C#, LINQ to SQL, Mock, Unit Test, Code Coverage
  • C# Dynamic Function Factory

    Building functions instead of expression trees. The functional programming features of the latest versions of C# allow developers to harness a very expressive programming paradigm to solve challenges in new, elegant ways. Two of the very interesting new features are the “Func<>” delegate and the...
    Posted to i have a framework... (Weblog) by fdumlao on 02-23-2009, 12:00 AM
    Filed under: Web Services, WCF, ASP.NET, Orcas, ASP.NET MVC, .NET, LINQ, C#, LINQ to SQL, Silverlight
  • Building Functions vs. Building Expressions: Performance Comparison

    Yesterday I posted an entry describing a method for building functions as opposed to building expressions to get a more succinct syntax, and in general a more functional approach. There was a touch of reflection in there though, so I wasn’t too sure what the performance would be like. Even though the...
    Posted to i have a framework... (Weblog) by fdumlao on 02-23-2009, 12:00 AM
    Filed under: .NET, ASP.NET, ASP.NET MVC, C#, LINQ, LINQ to SQL, Silverlight, Web Services, WCF
  • Problem when testing LINQ To SQL Classes objects

    I am writing a small web shop application using ASP.NET MVC Framework . As a part of this project I also write unit test and integration tests. I am using LINQ To SQL Classes as a mapping solution in my project. I found one misleading behaviour of LINQ To SQL Classes when writing integration tests. Look...
    Posted to Gunnar Peipman's ASP.NET blog (Weblog) by DigiMortal on 03-31-2009, 12:00 AM
    Filed under: C#, Testing, LINQ To SQL
  • Renaming columns with LINQ

    I have been using LINQ to SQL on a WinForms project. I have played around with LINQ in the past but have never had the opportunity to use it on a project. I have used SQL Server for probably about 10 years now and consider my T-SQL skills to be pretty decent. So something such as renaming a column in...
    Posted to David McCollough (Weblog) by dmccollough on 03-30-2009, 12:00 AM
    Filed under: ASP.NET, C#, SQL Server, SQL Server 2008, Web Application, WinForms, LINQ, LINQ To SQL
  • LINQ to SQL: Debugger Visualizer Error: No quotes for string values

    Recently when I was using LINQ to SQL (which I happen to love so much) and using the LINQ to SQL debug visualizer tool (which can be found here ) to see what query was getting generated I came across an issue. below is a screen-shot of the query I was looking at. If I inspected it in the quick-watch...
    Posted to Bad design is the father of invention (Weblog) by rupendradhillon on 04-21-2009, 12:00 AM
    Filed under: .Net 3.5, .Net Platform, C#, Development, Debug, Microsoft, LINQ, SQL Server, LINQ to SQL
Page 1 of 4 (33 items) 1 2 3 4 Next >