| |
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
44 Articles match "How To","Query"
| Related DevelopMentor Courses | MORE | | Roll Your Own REST-ful WCF Router Recently I’ve been tasked with building a WCF routing service and faced the choice of whether to go with the built-in router that ships with WCF 4.0 , or to build one from scratch. Nevertheless, there are times when it might make sense to build a router that can talk to clients who don’t know anything about Soap, for example, an AJAX web application. While the ASP.NET MVC or the new ASP.NET Web API might seems like attractive options, WCF is the way to go if you need to accommodate both Soap-based and Rest-ful clients. FirstOrDefault(); if (region != DevelopMentor Courses - Tuesday, April 24, 2012 What’s new in ApprovalTests.Net v.20? mic said in his NDC talk … Using ApprovalTests makes what was implicit , explicit so that the item can now be tested Inspired by his talk, Jim Counts and I created a new method in AspApprovals to make the formerly implicit ASP routing explicit and now easily able to be tested. For example, it it easy to accidentally remove a button-click event. Event approvals allows you to easily lock down existing events which are associated with an object or a form. Unfortunately, many times you don’t want to say ‘What are the events associated with this button"? DevelopMentor Courses - Thursday, August 9, 2012 Guerrilla.NET (US) Training EF : Write classes that can track changes to their own state for n-tier development with Entity Framework. LINQ : Use LINQ to access objects, XML, and SQL relational data MVC : Learn the how build modern web applications using ASP.NET MVC 3.0 DI/IoC : Use powerful OO design patterns and techniques to build loosely-coupled, testable, and maintainable applications including Dependency Injection (DI), Inversion of Control (IoC), and unit testing. oData : Expose your SQL data sources to rich clients and RIA web applications using WCF Data Services and oData. DevelopMentor Courses - Tuesday, March 1, 2011 |
29 Articles match "How To","Query"
| The Latest from DevelopMentor | MORE | | A Roundup of MongoDB Management Tools Back in the early days, there really were no management tools analogous to RDBMS tools (e.g. It’s time to look around and see what management / monitoring tooling is around these days for MongoDB. There are many different options to choose depending on your platform and use-cases. Key features : Complete (albeit command-line only) access to MongoDB. So you should take the time to learn it properly. Especially since you’ll need to know most of the features to take advantage of Robomongo above anyway. SQL Server Management Studio ). Michael C. Kennedy's Weblog - Monday, April 22, 2013 Tips for optional parameters to ASP.NET MVC action methods Here’s a quick ASP.NET MVC tip to help you be more productive and write cleaner code. We will see how to leverage C# 4′s optional and default parameters in our action methods for greatly simplifying our code while keeping it fully functional and error free. Often you want to pass data to your controllers based on URL parameters. This can either be part of the URL itself in the case of route data or it can be part of the query string. But notice how ugly and complex the code becomes. Yikes, we went from 1 line of code to many! Michael C. Kennedy's Weblog - Friday, December 21, 2012 Introduction to ASP.NET MVC Routes In this short screencast, I’ll show you everything you need to know to get started with ASP.NET MVC routing. You’ll see how default routes in MVC map to controllers and actions. Next you’ll see how to map additional data from query-strings in addition to simple route data. Finally, we’ll create a custom route to pass additional data in a clean, URL based manor. Here’s another screencast, this time on MVC and routing. Filed under: Video Tagged: NET , MVC , Screencasts. Video.NET MVC Screencasts Michael C. Kennedy's Weblog - Monday, December 3, 2012 | -
| The Best from DevelopMentor | MORE | - How to rip audio books
So i listen to a lot of audio books, and here's how i create the mp3 of them. Overview we are going to create bite size files about 30 minutes each. link] 4) set your encoding bitrate to 64k & stereo, this is a very high quality audio book. To do this double click a track. then label them, and create the id tags. finally we'll attach a picture. Make sure the book is UNABRIDGED 1) get a ipod - i prefer the nano. link] Ripping 2) download audiograbber & install. link] 3) download lame encoder & install. select the Sectors>Last. And there you go Llewellyn Falco - Sunday, July 6, 2008 - MongoDB vs. SQL Server 2008 Performance Showdown
In that article I introduced the NoSQL movement, MongoDB, and showed you how to program against it in.NET using LINQ and NoRM. For ease-of-use, you’ll have to want to read the original article. If your application is data intensive and stores lots of data, queries lots of data, and generally lives and breathes by its data, then you’d better do that efficiently or have resources (i.e. money) to burn. It means you can have fewer servers to maintain and purchase or lease. The scenario above is what I’m trying to model. Query Speed Comparison. Michael C. Kennedy's Weblog - Thursday, April 29, 2010 - Improve perceived performance of ASP.NET MVC websites with asynchronous partial views
m sure this would never actually happen to you, but imagine you’re facing this problem just for the sake of exploring the possibilities. :-). Now, you web app is mostly fast and responsive, but there are certain types of data that just bring the whole thing to a grind. This article will cover a technique using ASP.NET MVC partial views, along with just a sprinkle of jQuery, JavaScript, and HTML5 to make your site feel nice and responsive even if you cannot increase the speed of certain operations. m going to show you how to make your site feel faster without speeding it up. Michael C. Kennedy's Weblog - Tuesday, November 13, 2012 - Introduction to ASP.NET MVC Routes
In this short screencast, I’ll show you everything you need to know to get started with ASP.NET MVC routing. You’ll see how default routes in MVC map to controllers and actions. Next you’ll see how to map additional data from query-strings in addition to simple route data. Finally, we’ll create a custom route to pass additional data in a clean, URL based manor. Here’s another screencast, this time on MVC and routing. Filed under: Video Tagged: NET , MVC , Screencasts. Video.NET MVC Screencasts Michael C. Kennedy's Weblog - Monday, December 3, 2012 - The NoSQL Movement, LINQ, and MongoDB - Oh My!
Tell me we aren’t we going back to flat files.”. No, but in the relational model, something does has to give. The outcry about flat files above is meant to highlight an assumption developers often have about building data-driven applications: Data goes in the database (SQL Server, Oracle, or MySql). Performance - especially when there are many writers as compared to the number of readers (think Twitter or Facebook). For some vague motivation, let me just give you a quick look at how you define the data model and maintain it. Want to do a query? Michael C. Kennedy's Weblog - Thursday, April 22, 2010 - Identity in.NET 4.5–Part 1: Status Quo (Beta 1)
You will be able to access all WIF functionality now from prominent namespaces like ‘System.Security.Claims’ and ‘System.IdentityModel’ (yay!). While the classes are designed in a way that you won’t “feel” a difference by default, having the power of claims under the hood (and by default) will change the way how to design security features with the new.NET framework. This makes querying claims much more streamlined. also had to smile when I saw ClaimsPrincipal.Current (have a look at the code yourself) ;) With all the goodness also comes a number of breaking changes. www.leastprivilege.com - Friday, March 16, 2012 - A Roundup of MongoDB Management Tools
Back in the early days, there really were no management tools analogous to RDBMS tools (e.g. It’s time to look around and see what management / monitoring tooling is around these days for MongoDB. There are many different options to choose depending on your platform and use-cases. Key features : Complete (albeit command-line only) access to MongoDB. So you should take the time to learn it properly. Especially since you’ll need to know most of the features to take advantage of Robomongo above anyway. SQL Server Management Studio ). %>
| | |