clipped from www.code-magazine.com In my last column I talked about LINQ as the key feature in .NET 3.5. ASP.NET 3.5 is not going to see a whole bunch of new features only just a few new controls and the roll up of some of the slip stream features like Microsoft ASP.NET AJAX and IIS 7 support directly rolled into the .NET framework. The big news in ASP.NET 3.5, and .NET 3.5 in general, is LINQ and its related new features. In the last column I introduced some key features of LINQ and why I think it’s easily the most important feature in .NET 3.5. This time I’ll take a closer look at the data specific LINQ features in LINQ to SQL. Unwrapping LINQ to SQL |
This blog is a knowledge base...where I clip cool tricks and urls
diving into LINQ
clean CSS separation
clipped from weblogs.asp.net
One of the big features that web developers will quickly discover with VS 2008 is its dramatically improved HTML designer, and the rich CSS support it brings. VS 2008 now uses the same web designer that ships with Microsoft's new Expression Web product. In addition to providing lots of new functionality, you'll also find that this web designer is much faster than the VS 2005 version (which was based on a much older code base). VS 2008 supports a new tool window inside the IDE called "Manage Styles". This shows all of the CSS stylesheets, and their corresponding rules, for the page you are currently editing. It can be used both when you are in design-view, as well as when you are in source view on a page: |
MVC in ASP.NET part 2
clipped from weblogs.asp.net The ASP.NET MVC Framework enables you to use any data access pattern or framework you want in order to retrieve and manage your models. If you want to use ADO.NET DataSets/DataReaders (or abstractions built on top of them) you can. If you prefer to use an object relational mapper (ORM) like NHibernate, LLBLGen, WilsonORMapper, LINQ to SQL/LINQ to Entities you can absolutely use those as well. For our e-commerce sample application I'm going to use the built-in LINQ to SQL ORM shipped in .NET 3.5 and VS 2008. You can learn more about LINQ to SQL from my ongoing blog tutorial series that covers it (in particular make sure to check out my Part1, Part2, Part3 and Part4 posts). Mapping URL Parameters to Controller Action Methods |
MVC in ASP.NET
clipped from weblogs.asp.net In most web frameworks (ASP, PHP, JSP, ASP.NET WebForms, etc), incoming URLs typically map to template files stored on disk. For example, a "/Products.aspx" or "/Products.php" URL typically has an underlying Products.aspx or Products.php template file on disk that handles processing it. When a http request for a web application comes into the web server, the web framework runs code specified by the template file on disk, and this code then owns handling the processing of the request. Often this code uses the HTML markup within the Products.aspx or Products.php file to help with generating the response sent back to the client. |
Avoid Loops in Excel
clipped from www.ozgrid.com To put it bluntly I very often avoid Loops, they are far too Sub WrongWay()Now compare the above code to this one: |
LINQ need primary key
clipped from blog.benhall.me.uk Type: System.InvalidOperationException
|
convert with generics
clipped from nayyeri.net
|
BBuilder - Open source batch builder
clipped from www.codeproject.com
|
GridView DataBind LINQ to ASP.NET controls
clipped from weblogs.asp.net Over the last few weeks I've been writing a series of blog posts that cover LINQ to SQL. LINQ to SQL is a built-in O/RM (object relational mapper) that ships in the .NET Framework 3.5 release, and which enables you to easily model relational databases using .NET classes. You can use LINQ expressions to query the database with them, as well as update/insert/delete data. Below are the first four parts of my LINQ to SQL series: In today's blog post I'll cover the new <asp:LinqDataSource> control that is shipping as part of ASP.NET in the upcoming .NET 3.5 release. This control is a new datasource control for ASP.NET (like the ObjectDataSource and SQLDataSource controls that shipped with ASP.NET 2.0) which makes declaratively binding ASP.NET UI controls to LINQ to SQL data models super easy. Sample Application We'll be Building |
ASP.NET MVC
clipped from weblogs.asp.net
|
Tuning Performance - LINQ to SQL
clipped from davidhayden.com LINQ To SQL - Lazy Loading Properties and Specifying PreFetch When Needed - Sweet Query and Performance Control This is another post in a series of posts on LINQ To SQL in how I think I have discovered a potential performance problem of LINQ To SQL only to find an elegant solution to the problem using LINQ To SQL. If you haven't been reading along with the discovery, here are a few previous posts on LINQ To SQL in this discussion of performance and query tuning: |
LINQ Overview
clipped from www.hookedonlinq.com
HookedOnLINQ db = |
Local database sdf in VS2008
clipped from channel9.msdn.com
|
Introduction to LINQ
clipped from weblogs.asp.net
|
WPF. Draggable objects and simple shape connectors.
clipped from dvuyka.spaces.live.com
|
Json.net
clipped from james.newtonking.com
|
linq book
clipped from www.manning.com
|
Open Source Batch Editor
clipped from www.codeproject.com
|
Blog Archive
-
▼
2007
(68)
-
▼
November
(18)
- diving into LINQ
- clean CSS separation
- MVC in ASP.NET part 2
- MVC in ASP.NET
- Avoid Loops in Excel
- LINQ need primary key
- convert with generics
- BBuilder - Open source batch builder
- GridView DataBind LINQ to ASP.NET controls
- ASP.NET MVC
- Tuning Performance - LINQ to SQL
- LINQ Overview
- Local database sdf in VS2008
- Introduction to LINQ
- WPF. Draggable objects and simple shape connectors.
- Json.net
- linq book
- Open Source Batch Editor
-
▼
November
(18)
Monday, October 15, 2007 3:22 AM
by
Brandon Bloom