DotNetShoutout - Stories tagged with Linq
6
shouts

LINQ for JavaScript: Using and Extending JSLINQ

posted by gshacklesgshackles 21 hours, 54 minutes ago
Thursday, March 18, 2010 2:09:09 PM GMT
LINQ makes our lives easier when dealing with .NET collections, so why not apply the same ideas to JavaScript? This post goes over some of the operators in the JSLINQ implementation, and then extends it with some more custom operators. (more)
category: ASP.NET | clicked: 5 | comment | | source: www.gregshackles.com
tags: JavaScript, Linq
7
shouts

WCF Ria Services For Real - Jesse Liberty

published 23 hours, 22 minutes ago posted by jantujantu 2 days, 15 hours, 40 minutes ago
Thursday, March 18, 2010 12:41:05 PM GMT Tuesday, March 16, 2010 8:23:45 PM GMT
my previous post I discussed creating the database and tables for the Silverlight HVP configuration data.  All that was great, and worked just dandy until it was time to get the data from the database server to the application running on the client.“But,” I thought, “How hard can it be?”  I’ve done a few mini-tutorials… should be straight-forward… And it was… sorta.Getting Going The steps are pretty straight orward:Create an entity data model that corresponds to the t... (more)
category: Silverlight | clicked: 51 | comment | | source: blogs.silverlight.net
tags: Best Practices, data, Data-Binding, Design Patterns, HyperVideoProject, Linq, Mini-Tutorial, MVVM, slhvp, Videos, WCF-RIA-Services
6
shouts

Using Mongo With LINQ - Rob Conery

published 13 days, 21 hours, 30 minutes ago posted by iftekharahmedamitiftekharahmedamit 14 days, 12 hours, 25 minutes ago
Friday, March 05, 2010 2:33:53 PM GMT Thursday, March 04, 2010 11:38:33 PM GMT
Lately I’ve been working with Mongo, creating a C# driver with Karl Seguin and Andrew Theken (and James Avery and Jason Alexander) and today I checked in some optimizations that made me really stoked and I thought I would share... (more)
category: Architecture | clicked: 76 | comment | | source: blog.wekeroad.com
tags: C#, Linq, Mongo, MongoDB
7
shouts

Linq to Visual Tree | Colin Eberhardt's Adventures in WPF

published 12 days, 19 hours, 59 minutes ago posted by FantasticMrFishFantasticMrFish 14 days, 22 hours, 3 minutes ago
Saturday, March 06, 2010 4:04:10 PM GMT Thursday, March 04, 2010 2:00:48 PM GMT
This blog post demonstrates a Linq API which can be used to query the WPF / Silverlight Visual Tree. You can find a few other Linq to Visual Tree techniques on other blogs, but what makes this one unique is that it retains, and allows queries that make use of the tree like structure rather than simply flattening it. I have recently published an article on codeproject which describes a technique for generating Linq API for querying tree-like structures. This blog post makes use of a generated API for W... (more)
category: Silverlight | clicked: 52 | comment | | source: www.scottlogic.co.uk
tags: Linq, silveright, WPF
8
shouts

The Weekly Source Code 51 - Asynchronous Database Access and LINQ to SQL Fun - Scott Hanselman

published 15 days, 32 minutes ago posted by jantujantu 15 days, 21 hours, 27 minutes ago
Thursday, March 04, 2010 11:31:14 AM GMT Wednesday, March 03, 2010 2:36:45 PM GMT
You can learn a lot by reading other people's source code. That's the idea behind this series, "The Weekly Source Code." You can certainly become a better programmer by writing code but I think good writers become better by reading as much as they can. I was poking around in the WebFormsMVPproject's code and noticed an interesting pattern.You've seen code to get data from a database and retrieve it as an object, like this:public Widget Find... (more)
category: ASP.NET | clicked: 73 | comment | | source: www.hanselman.com
tags: ASP.NET ASP.NET MVC, Linq, Open Source, Source code
6
shouts

Sharing the goodness that is VB Using Projections with Data Services in Visual Studio 2010 - Beth Massi

published 15 days, 32 minutes ago posted by jantujantu 15 days, 21 hours, 34 minutes ago
Thursday, March 04, 2010 11:31:14 AM GMT Wednesday, March 03, 2010 2:29:07 PM GMT
Using Projections with Data Services in Visual Studio 2010Published 02 March 10 03:49 PM Starting in Visual Studio 2008 Service Pack 1, you can create ADO.NET Data Services to easily expose data models via RESTful web services. So if you are building a remote CRUD data access layer then this is a technology that you're probably using or are looking into. I’ve written a lot about about data services in VS2008, my favorites are:Using ADO.NET Data ServicesADO.NET Data Services - Building a WPF ClientADO.NE... (more)
category: Smart Client | clicked: 48 | comment | | source: blogs.msdn.com
tags: ADO.NET Data Services, article, DevCenter, Linq, VS2010, WCF Data Services
4
shouts

Data Points - Precompiling LINQ Queries

published 21 days, 11 hours, 34 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 22 days, 13 hours, 14 minutes ago
Friday, February 26, 2010 12:30:00 AM GMT Wednesday, February 24, 2010 10:49:16 PM GMT
Did you know that by precompiling LINQ queries you might actually be degrading your app’s performance if you’re not careful? Julie Lerman explains how to ensure you’re not re-precompiling queries each time and losing the expected performance benefits across post-backs, short-lived service operations and other code where critical instances are going out of scope. (more)
category: Foundation | clicked: 16 | comment | | source: msdn.microsoft.com
tags: EF, Entity Framework, entityframework, Linq, MSDN, MSDN Magazine
5
shouts

How to implement paging with LINQ

published 24 days, 6 hours, 4 minutes ago posted by kcherupakcherupa 25 days, 5 hours, 15 minutes ago
Tuesday, February 23, 2010 6:00:03 AM GMT Monday, February 22, 2010 6:48:52 AM GMT
Before going into how paging is implemented with LINQ, Let's discuss the need for implementing paging. With large amounts of data, it is not a good practice to pull all records from database when you are showing a fraction of them in one page. It is always recommended to use data on demand approach. When you want to show first 20 records out of the search results then you must get the first 20 records from database and discard the rest. Similarly when you want to show next 20 records of the search res... (more)
category: Agile | clicked: 20 | comment | | source: cherupally.blogspot.com
tags: C# 3.0, Linq, Paging
5
shouts

Sorting a DataTable - LINQ performance | AdaTheDev

published 24 days, 6 hours, 4 minutes ago posted by AdaTheDevAdaTheDev 25 days, 18 hours, 5 minutes ago
Tuesday, February 23, 2010 6:00:03 AM GMT Sunday, February 21, 2010 5:58:49 PM GMT
There are a number of ways to sort the data within a DataTable and this article compares 3 ways to find out what the performance difference is between the different approaches, and which offers the most scalable solution. (more)
category: Foundation | clicked: 11 | comment | | source: www.adathedev.co.uk
tags: DataTable, Linq, Performance
3
shouts

Code Tech Blog: How to read, insert, update and delete from an XML file Using LINQ to SQL

posted by hunterz85hunterz85 33 days, 15 hours, 46 minutes ago
Saturday, February 13, 2010 8:17:52 PM GMT
This is an introduction to Linq to XML showing how to read, insert, update and delete from an XML file. (more)
category: ASP.NET | clicked: 8 | comment | | source: codetechblg.blogspot.com
tags: ASP.NET, Linq, Linq to XML, XML
3
shouts

Code Tech Blog: Inline Editing Using jQuery and Ajax in Repeater control

posted by hunterz85hunterz85 33 days, 15 hours, 48 minutes ago
Saturday, February 13, 2010 8:16:04 PM GMT
Repeater control is one of the light weight control when compared to the other databound controls. It provides more flexibility on the layout of data displayed and the control itself will not render any additional HTML like GridView and DataList control do. It only renders the HTML we specified in the template columns which makes it light weight when compared to other controls. RRepeater control as such will not provide edit/update functionalities for the data. In this article, we will overcome this di... (more)
category: ASP.NET | clicked: 5 | comment | | source: codetechblg.blogspot.com
tags: Ajax, ASP.NET, jQuery, Linq, Repeater
6
shouts

Working with transactions in Entity Framework and LINQ to SQL

published 37 days, 1 hour, 34 minutes ago posted by DevartDevart 37 days, 22 hours, 6 minutes ago
Wednesday, February 10, 2010 10:29:29 AM GMT Tuesday, February 09, 2010 1:57:48 PM GMT
Entity Framework In this article we consider a short description of the Entity Framework and LINQ to SQL transactional models. There are also some simple code listings illustrating different aspects of the transactional model. A transaction is a series of operations performed as a single unit of work. Entity Framework transactions are a part of its internal architecture. The SaveChanges method operates within a transaction and saves results of the work. It is designed to ensure data integrity. (more)
category: Architecture | clicked: 60 | comment | | source: www.devart.com
tags: Database, Entity Framework, Linq
4
shouts

A few new tools in my .NET development toolbox

posted by http://webpoet.myopenid.com/http://webpoet.myopenid.com/ 39 days, 4 hours, 7 minutes ago
Monday, February 08, 2010 7:56:10 AM GMT
Lately I’ve been working on a very interesting project along with quite a few great developers that I haven’t had the pleasure of working with before. Apart from it having been, and still is, very instructive and a lot of fun the experience has also opened my eyes to a few great tools for .NET development that I haven’t used before. (more)
category: ASP.NET | clicked: 12 | comment | | source: joelabrahamsson.com
tags: dottrace, Linq, Log4net, Tools
7
shouts

Performance: Using dynamic code to copy property values of two objects

published 44 days, 1 hour, 19 minutes ago posted by gpeipmangpeipman 44 days, 12 hours, 13 minutes ago
Wednesday, February 03, 2010 10:45:04 AM GMT Tuesday, February 02, 2010 11:51:01 PM GMT
Last year I wrote short posting about how to use LINQ to find matching properties of two objects. In this posting I will show you how to copy values from one object to another and how to boost up performance so you can use this strategy also on in servers under heavy load. (more)
category: Foundation | clicked: 35 | comment | | source: weblogs.asp.net
tags: .NET, Linq, Performance, Reflection
7
shouts

Technical Jargon » Linq to Sql and ASP.NET MVC – AutoCommit and the RoutePreParser

published 45 days, 3 minutes ago posted by ali62bali62b 45 days, 5 hours, 55 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Tuesday, February 02, 2010 6:08:52 AM GMT
This is the second in a series of posts on using ASP.NET MVC with Linq to Sql: Part 1 – DataContext Per RequestPart 2 – AutoCommit and the RoutePreParser In my previoust post, I demonstrated how you could scope a Linq to Sql DataContext to a single HTTP Request by using StructureMap to manage the lifetime of the DataContext instance. This often works well, but has a couple of gotchas. Let’s take a look at an example: publicclass PostController : Controller {privatereadonly BlogDataContext context;   ... (more)
category: ASP.NET | clicked: 41 | comment | | source: www.jeremyskinner.co.uk
tags: ASP.NET MVC, Linq, Linq To SQL
7
shouts

Technical Jargon » Linq to Sql and ASP.NET MVC – DataContext Per Request

published 45 days, 22 hours, 19 minutes ago posted by ali62bali62b 46 days, 19 hours, 41 minutes ago
Monday, February 01, 2010 1:44:24 PM GMT Sunday, January 31, 2010 4:22:12 PM GMT
This is the first in a series of posts about using Linq to Sql with ASP.NET MVC. When using an ORM tool within a web application, it’s often common to scope a unit of work to the lifetime of an HTTP Request. If you’re using Linq to Sql and ASP.NET MVC, you can achieve this by using an Inversion of Control container in conjunction with an ActionFilter. For this example, I’m going to be using the StructureMap IoC container alongside a fictional “Blog” database. Firstly, you’ll need to configure St... (more)
category: ASP.NET | clicked: 61 | comment | | source: www.jeremyskinner.co.uk
tags: ASP.NET MVC, Linq, Linq To SQL
5
shouts

Code Tech Blog: Custom Paging in GridView Using LINQ

published 45 days, 3 minutes ago posted by hunterz85hunterz85 48 days, 17 hours, 10 minutes ago
Tuesday, February 02, 2010 12:00:23 PM GMT Friday, January 29, 2010 6:53:44 PM GMT
LINQ to SQL is another capability which we can use to manage the relational database object as .net object. We can query, insert, update and delete the underlying database object with these classes. When we query/update/delete these .net object, LINQ to SQL will automatically take care of the underlying relational data objects operations. In short, LINQ to SQL provides an Object-Relational Mapping (O/R Mapping) which maps objects of different type system. In our case, it is relational to object oriented ... (more)
category: ASP.NET | clicked: 35 | comment | | source: codetechblg.blogspot.com
tags: ASP.NET, Custom Paging, GridView, Linq, Linq Data Source
8
shouts

Code Tech Blog: Custom Paging And Jump to a Page Using LINQ (SEO Friendly Custom Paging)

published 52 days, 23 hours, 52 minutes ago posted by hunterz85hunterz85 55 days, 17 hours, 24 minutes ago
Monday, January 25, 2010 12:11:40 PM GMT Friday, January 22, 2010 6:39:28 PM GMT
The main disadvantage of the custom paging in my previous article is, the pager links are not simply a hyper link to a page. Instead, they are associated with javascript which makes a postback to bind the current page records and thus making it not search engine friendly. A link is search engine friendly if it has a target page associated with it through href property. Search engines will automatically reach the target page and will index those pages in this case. Moving forward, in this article we wil... (more)
category: ASP.NET | clicked: 41 | comment | | source: codetechblg.blogspot.com
tags: ASP.NET, Custom Paging, GridView, Linq, Linq Data Source, SEO Paging
2
shouts

Code Tech Blog

posted by hunterz85hunterz85 55 days, 17 hours, 30 minutes ago
Friday, January 22, 2010 6:33:17 PM GMT
The main disadvantage of the custom paging in my previous article is, the pager links are not simply a hyper link to a page. Instead, they are associated with javascript which makes a postback to bind the current page records and thus making it not search engine friendly. A link is search engine friendly if it has a target page associated with it through href property. Search engines will automatically reach the target page and will index those pages in this case. Moving forward, in this article we wil... (more)
category: ASP.NET | clicked: 5 | comment | | source: codetechblg.blogspot.com
tags: ASP.NET 3.5, Custom Paging, GridView, Linq, Linq Data Source, search engine optimisation (seo), SEO Paging
7
shouts

Populating a DropDownList with Linquify and the Entity Framework in C# ASP .NET

published 58 days, 2 hours, 22 minutes ago posted by surfer6surfer6 58 days, 19 hours, 14 minutes ago
Wednesday, January 20, 2010 9:41:33 AM GMT Tuesday, January 19, 2010 4:49:38 PM GMT
Linquify is a Visual Studio add-in and business class generator for LINQ to SQL and the Entity Framework. In this tutorial, walk through setting up a basic ASP .NET web application which populates a DropDownList control with people from a database, using Linquify and the Entity Framework. (more)
category: ASP.NET | clicked: 55 | comment | | source: www.primaryobjects.com
tags: ASP .NET, C#, Entity Framework, Linq, linquify
Previous 1 2 3 4 5 6 7 8 9 10 ... 17 18 Next