| |
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.
|
6 Articles match "Class","Demo"
| Related DevelopMentor Courses | MORE | | Using SignalR for real time data updates public class BooksHub : Hub. {. public class BooksHub : Hub. {. If you want to try this I have a live demo on my site where you can test this SignalR style page. In a previous post I showed how easy it is to create a simple chat application using SignalR. And chatting on the internet might be popular but as it turns out there are rather a lot of applications that need to do more than just chat. As it is there are a lot more CRUD style applications, where users edit data usually stored in a database for some purpose, than chat applications. var hub = $.connection.booksHub; The Problem Solver - Wednesday, July 25, 2012 Guerrilla.NET (US) Training EF : Write classes that can track changes to their own state for n-tier development with Entity Framework. Learn to write code using new.NET class libraries like LINQ and Silverlight. EF : Write classes that can track changes to their own state for n-tier development with Entity Framework. Beyond the Basics LINQ to Objects and LINQ to XML Entity Framework Introduction Day 2 Model-View-ViewModel for WPF and Silverlight PFx: Task: a Unified Threading API PFx: The Parallel Class and Concurrent Data Structures Building WCF REST Services [after?class] and jQuery. and 5.0 DevelopMentor Courses - Tuesday, March 1, 2011 Getting started with RavenDB in an ASP.NET MVC application Instead I just create my C# classes and store them as documents in the database. Make a change to my class, no problem it just keeps on working. Creating a real simple ASP.NET MVC application using RavenDB A quick demo will show just how easy it is to get started. In this demo I am going to use a simple book application to show how simple it is to get started with RavenDB. The book class is pretty basic and looks like this; 1: namespace RavenMvc.Models. 3: public class Book. All I need is the following code: 1: public class BooksController : Controller. The Problem Solver - Sunday, November 25, 2012 |
39 Articles match "Class","Demo"
| The Latest from DevelopMentor | MORE | | Announcing LearningLine: Instructor-led online training from DevelopMentor This is why LearningLine uses multiple learning modalities including videos, articles, code demos, and exercises. They will answer any question you have for your class. We’ll be announcing some free classes and subscriptions to celebrate our launch. Check out our class schedule and pricing options. If you are used to classroom instructor-led classes, I think you’ll be blown away at how affordable instructor-led learning can be. I am very proud to announce an exciting new online learning platform from DevelopMentor : [link]. Online training today. Michael C. Kennedy's Weblog - Monday, February 18, 2013 Getting started with RavenDB in an ASP.NET MVC application Instead I just create my C# classes and store them as documents in the database. Make a change to my class, no problem it just keeps on working. Creating a real simple ASP.NET MVC application using RavenDB A quick demo will show just how easy it is to get started. In this demo I am going to use a simple book application to show how simple it is to get started with RavenDB. The book class is pretty basic and looks like this; 1: namespace RavenMvc.Models. 3: public class Book. All I need is the following code: 1: public class BooksController : Controller. The Problem Solver - Sunday, November 25, 2012 Getting started with RavenDB in an ASP.NET MVC application Instead I just create my C# classes and store them as documents in the database. Make a change to my class, no problem it just keeps on working. Creating a real simple ASP.NET MVC application using RavenDB A quick demo will show just how easy it is to get started. In this demo I am going to use a simple book application to show how simple it is to get started with RavenDB. The book class is pretty basic and looks like this; 1: namespace RavenMvc.Models. 3: public class Book. All I need is the following code: 1: public class BooksController : Controller. The Problem Solver - Sunday, November 25, 2012 | -
| The Best from DevelopMentor | MORE | - Splitting CamelCase With Regular Expressions
A-Z])"); string[] words = splitter.Split(methodName); My friend, Michael Kennedy , demoed in class recently how to use LINQPad to test regular expressions. On my new project, I needed to split a method name up into its constituent parts. For Ruby programmers, this is easy: just split on underscores. For us.NET programmers, we need something a little fancier since we like to SquashOurMethodNamesTogetherLikeThis. Here’s a little regular expression that can do exactly that: (?<!^)(?=[A-Z]). <!^)(?=[A-Z]). A-Z]). <!^)(?=[A-Z])"); Jason Diamond - Saturday, August 15, 2009 - Using SignalR for real time data updates
public class BooksHub : Hub. {. public class BooksHub : Hub. {. If you want to try this I have a live demo on my site where you can test this SignalR style page. In a previous post I showed how easy it is to create a simple chat application using SignalR. And chatting on the internet might be popular but as it turns out there are rather a lot of applications that need to do more than just chat. As it is there are a lot more CRUD style applications, where users edit data usually stored in a database for some purpose, than chat applications. var hub = $.connection.booksHub; The Problem Solver - Wednesday, July 25, 2012 - The NoSQL Movement, LINQ, and MongoDB - Oh My!
Define your classes in C# (largely) without regard to putting them in a database. Related classes? Create a simple DataContext-like class which exposes each top-level type that is to be stored in the database. Maintain the database and evolve it by maintaining your classes from step 1. *. With NoSQL, you have one place to do that - in your C# classes. Then we’d use LINQ to SQL or Entity Framework to generate the ORM classes. So our first step is to define the classes we’d be storing in the DB via NoRM. Insanity!” Flat files? It’s true, there are. Michael C. Kennedy's Weblog - Thursday, April 22, 2010 - Understanding Text Encoding in ASP.NET MVC (ASP.NET MVC Foundations Series)
Check out the CMS section of the demo to see it in action. We could write it out in HTML each time, or we could write a method on a class we make called OurHtmlHelper called LinkWithImage. Introducing the MvcHtmlString class. The purpose of this class is to inform MVC to get out of the way and NOT encode the contents. Check out the Helpers section of the demo to see this in action. This article covers the various ways in which you might handle text encoding in ASP.NET MVC. You need to be very careful about how you redisplay their input. data). Michael C. Kennedy's Weblog - Monday, October 15, 2012 - Improve perceived performance of ASP.NET MVC websites with asynchronous partial views
We have a div with the class partialContents. Check out the live demo I’ve posted here: Sample: Improve Perceived Performance with Async Partial Views. Imagine you’re building an ASP.NET MVC website which has some performance problems. 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. First a disclaimer / warning. click to enlarge). don’t know about you, but 2.5 Michael C. Kennedy's Weblog - Tuesday, November 13, 2012 - Getting T4 templates to work with Silverlight
The reason being that Visual Studio decides to load the Silverlight version of System.dll which doesn’t contain all the required classes. 12: public class Demo. 3: public class Demo. Pretty nice, something I will be using a lot more often when developing all those repetitive DTO classes. In a previous blog post I mentioned that T4 templates didn’t quite work with Silverlight development. Fortunately I was not the first person to run into this limitation, Jason Jarrett did as well and he described the solution in a blog post here. 11: {. The Problem Solver - Monday, March 23, 2009 - Reporting using Entity Framework
These views limit the data to Massachusetts and join a couple of table to make for more demo-friendly data. 11: public class AdventureService : IAdventureService. Very useful for quick demos: Create the project (skip the wizard), then delete the Report1.rdlc. 11: public partial class Form1 : Form. For many years the mantra for implementing business logic in your line of business application has been: “don’t put it in the database, don’t put it in the user interface”. Technologies like Entity Framework help us convert data in the database to.NET objects and add logic. The Blomsma Code - Wednesday, October 20, 2010 %>
| | |