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
  • 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
  • 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
  • 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
  • Which ORM? LINQ To SQL, Entity Framework? LLBLGen? NHibernate?…?

    While I was planning to write about the same topic and have the draft ready in my Windows Live Writer waiting to complete, I found an interesting question in StackOVerflow and couldn’t just resist to answer: ORM/Persistence layer Advice The question starts with: I'm starting a new project and I'm looking...
    Posted to Guru Stop (Weblog) by Mohamed Meligy on 10-31-2009, 12:00 AM
    Filed under: LINQ, ALT.NET, .NET FAQ, .NET, Domain Driven Design, FAQ, ORM, NHibernate, LLBLGen, Entity Framework, LINQ To SQL
  • The new Microsoft SQL Server Compact Edition 3.5 in Visual Studio 2010 RC without Geometry Types.

    tweetmeme_url = 'http://weblogs.asp.net/albertpascual/archive/2010/03/02/the-new-microsoft-sql-server-compact-edition-3-5-in-visual-studio-2010-rc-without-geometry-types.aspx'; tweetmeme_source = 'alpascual'; With the goodies coming with Visual Studio 2010 a new type of SQL Database comes out to make...
    Posted to Al Pascual ASP.NET Blog (Weblog) by albertpascual on 03-02-2010, 12:00 AM
    Filed under: LINQ to SQL, VS2010, SQL Server Compact Edition, LINQ
  • Understanding LINQ to SQL (2) IQueryable<T>

    [ LINQ via C# series ] The core of LINQ to Objects is IEnumerable<T>: Query methods are designed for IEnumerable<T> as extension methods , like Where(), Select(), etc.; Query methods are designed to be fluent, LINQ to Objects queries can be written in declarative paradigm via method chaining...
    Posted to Dixin's Blog (Weblog) by Dixin on 03-30-2010, 12:00 AM
    Filed under: .NET, C#, SQL Server, Functional Programming, LINQ, LINQ to SQL, LINQ via C# Series
  • Understanding LINQ to SQL (5) Remote And Local Method Call

    [ LINQ via C# series ] Since LINQ to SQL is translating C# methods into SQL, all the C# methods are required to make sense in SQL. According to MSDN : A local method call is one that is executed within the object model. A remote method call is one that LINQ to SQL translates to SQL and transmits to the...
    Posted to Dixin's Blog (Weblog) by Dixin on 04-19-2010, 12:00 AM
    Filed under: .NET, C#, LINQ, SQL Server, TSQL, LINQ via C# Series, LINQ to SQL, Functional Programming
Page 1 of 3 (22 items) 1 2 3 Next >