MihirPatel
Name: MihirPatel
Score: 10,492.74
Last Seen: 947 days, 1 hour, 32 minutes ago
Member Since: 11 February, 2009
DotNetShoutout
atom rss
11
Shouts

Quick Introduction to Dependency Injection

published 1265 days, 6 hours, 27 minutes ago posted by CygonCygon 1267 days, 6 hours, 17 minutes ago
Friday, December 04, 2009 9:39:23 AM GMT Wednesday, December 02, 2009 9:49:15 AM GMT
An easy to understand introduction to dependency injection in .NET using the Ninject inversion of control container. The dependency injection principle is a design concept by which classes and entire software components can be designed to be isolatable, reducing tight coupling, promoting reusability and allowing for unit tests to mock the dependencies of a class or component. (more)
category: Architecture | clicked: 3 | comment | | source: www.nuclex.org
tags: .NET, Inversion of control, Design Pattern, C#, dependency injection
12
Shouts

SQL SERVER – Azure Start Guide – Step by Step Installation Guide « Journey to SQL Authority with Pinal Dave

published 1266 days, 7 hours ago posted by pinaldavepinaldave 1267 days, 12 hours, 11 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 3:55:20 AM GMT
As SQL Azure CTP is released I have included here step by step guide for how to configure the CTP. For pricing and introduction please read SQLAuthority News – SQL Azure – Microsoft SQL Data Services – Introduction and Pricing First it has to be configured online at https://sql.azure.com/ Login using your Live ID Type in invitation code received from Microsoft for CTP. You can request one for your self here. Accept the TOU. Once logged it you will have to create server username and password. ... (more)
category: Data | clicked: 0 | 1 comment | | source: blog.sqlauthority.com
tags: SQL, SQLServer, pinaldave, SQLAuthority
12
Shouts

Atanas Hristov: Design Patterns – Memento Pattern - blog about programming.

published 1266 days, 7 hours ago posted by http://atanashristov.blogspot.com/http://atanashristov.blogspot.com/ 1267 days, 21 hours, 12 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Tuesday, December 01, 2009 6:54:27 PM GMT
The Memento Pattern is useful to remember the state of object without keeping copy of the whole object. Copying of the entire object is sometimes inefficient as the copy eventually contains much more information that we need to restore back. (more)
category: How To | clicked: 0 | 1 comment | | source: atanashristov.blogspot.com
9
Shouts

Silverlight : Listening to Dependency Property Change notification of a given Element

published 1266 days, 7 hours ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 1266 days, 19 hours, 18 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 8:48:25 PM GMT
I was digging a bit around Silverlight Dependency properties, mainly to see how to receive change notification when ever a dependency property is changed. In WPF, this is straight forward, you may use the DependencyPropertyDescriptor, and call AddValueChanged. Like this. DependencyPropertyDescriptor desc = DependencyPropertyDescriptor.FromProperty (UIElement.VisibilityProperty, typeof(UIElement)); desc.AddValueChanged (this.myLabel, new EventHandler(VisibilityChanged));   Now, how to do this ... (more)
category: Metro | clicked: 4 | 1 comment | | source: amazedsaint.blogspot.com
tags: Silverlight, .NET 3.5 SP1, C#
9
Shouts

Understanding Partial Views in ASP.NET MVC Application

published 1266 days, 7 hours ago posted by http://azamsharp.myopenid.com/http://azamsharp.myopenid.com/ 1266 days, 19 hours, 16 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 8:50:24 PM GMT
Formally known as GridViewGuy Videos | Podcasts Understanding Partial Views in ASP.NET MVC Application AzamSharp Published Date: 12/2/2009 12:49:06 PM Views: 6 Abstract: In ASP.NET WebForms, UserControls were used to break the application into smaller pieces. Each piece represented an important part of the application. In ASP.NET MVC application you can achieve the same effect using RenderPartial and RenderAction methods.... (more)
category: Web Dev | clicked: 0 | comment | | source: www.highoncoding.com
tags: ASP.NET MVC 1.0, ASP.NET
11
Shouts

Create a Silverlight Europe weather map

published 1266 days, 7 hours ago posted by KMilKMil 1266 days, 20 hours, 4 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 8:02:39 PM GMT
In this article, Andrej Tozon will walk you through the process of creating an Europe weather map application in Silverlight by using the Bing Maps Silverlight Control. (more)
category: Metro | clicked: 4 | comment | | source: www.silverlightshow.net
12
Shouts

Caliburn: Binding Conventions

published 1266 days, 7 hours ago posted by nigel-sampsonnigel-sampson 1267 days, 6 hours, 11 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 9:55:07 AM GMT
Adding more convention over configuration to data binding in Silverlight and WPF (more)
category: Metro | clicked: 4 | comment | | source: compiledexperience.com
tags: Silverlight, WPF, Caliburn
10
Shouts

Meta-Me : Tip 47 – How fix-up can make it hard to change relationships

published 1266 days, 7 hours ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1267 days, 6 hours, 53 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 9:13:24 AM GMT
Tip 47 – How fix-up can make it hard to change relationships Problem: Take this code: Category oldCategory = ctx.Categories     .Include("Products")     .First(c => c.Name == "Drink"); Category newCategory = new Category {Name = "Beverage"}; foreach(Product product in oldCategory.Products) {     newCategory.Products.Add(product); } Ignore for a second that in this example the solution is probably just to rename the oldCategory "Beverages" - Coming up with real world samples gets hard... (more)
category: Architecture | clicked: 0 | comment | | source: blogs.msdn.com
tags: entityframework 4, entityframework4, Entity Framework, EF4, EF 4.0, entityframework, Tips
10
Shouts

dnrTV - Show #160 - Adam Cogan on TFS and Visual Studio 2010 Part 2

published 1266 days, 7 hours ago posted by mithumithu 1266 days, 19 hours, 55 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 8:11:10 PM GMT
Adam and Carl continue to discuss using Visual Studio Ultimate and Team System to manage your projects and proposals. Several cutting edge 3rd party apps help out as well. (more)
category: Screencast | clicked: 3 | 1 comment | | source: www.dnrtv.com
tags: Visual Studio Ultimate, VS, Party Apps, Visual Studio 2010, Visual Studio, dnrTV, VS2010, team system
10
Shouts

Windows Ribbon for WinForms, Part 19 – RecentItems - Arik Poznanski's Blog

published 1266 days, 7 hours ago posted by arikarik 1268 days, 21 hours, 4 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Monday, November 30, 2009 7:02:27 PM GMT
Windows Ribbon for WinForms, Part 19 – RecentItems Windows Ribbon for WinForms library now supports working with recent items in the application menu. The result of this post is a yet another sample, “16-RecentItems”, found on the project site. What are recent items? Recent items are items in a list which appears in the application menu. They doesn’t have to be file names and they doesn’t have to be recent, although it is recommended. Every item has 3 properties: Label – Item name, usually fi... (more)
category: UX | clicked: 0 | 1 comment | | source: blogs.microsoft.co.il
tags: .NET, Ribbon, Windows 7, C#
10
Shouts

Random Acts of Coding: Managing Composition Through Lazy Loading Parts

published 1267 days, 4 hours, 18 minutes ago posted by JamesEggersJamesEggers 1268 days, 2 hours, 22 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Tuesday, December 01, 2009 1:44:20 PM GMT
So far in this post series, we've been looking at various aspects of working with MEF in the context of a single level of composition.  One interesting thing about MEF is that its composition is recursive based on the assemblies and types identified in the catalogs within the container.  What this means is that if one of our parts also has imports defined for parts of its own, the composition container will continue loading parts for the initial type as well as all parts loaded until no more parts are fo... (more)
category: Architecture | clicked: 1 | 1 comment | | source: randomactsofcoding.blogspot.com
tags: C#, MEF
9
Shouts

EF POCOs and GetObjectStateEntry : Don't Be Iffy

published 1267 days, 4 hours, 18 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1268 days, 6 hours, 47 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Tuesday, December 01, 2009 9:20:02 AM GMT
Even when working with POCOs, the EF’s ObjectContext can track the objects using ObjectStateEntry objects just as it does for entities that inherit from EntityObject. I was thinking about ObjectContext.ObjectStateManager.GetObjectStateEntry. This method has two overloads. One takes an entity and the other takes an EntityKey of an entity. Then it returns the ObjectStateEntry being maintained to track that particular entity. In more detail, the signature for the first overload is GetObjectStateEntry(obj... (more)
category: How To | clicked: 1 | 1 comment | | source: thedatafarm.com
tags: persistence ignorance, entityframework4, EF4, POCO
11
Shouts

Convert, Encode And Decode Silverlight WriteableBitmap Data

published 1267 days, 4 hours, 18 minutes ago posted by http://kodierer.blogspot.com/http://kodierer.blogspot.com/ 1268 days, 18 hours, 17 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Monday, November 30, 2009 9:49:32 PM GMT
Rene Schulte provides source code on how to convert a Silverlight WriteableBitmap to and from a byte array. Furthemore he shows how to encode it as a JPEG image and decode it back. (more)
category: Metro | clicked: 4 | 1 comment | | source: kodierer.blogspot.com
tags: Silverlight, dotnet, writeablebitmap, CSharp
9
Shouts

WCF Error: No Corresponding Start Element Open

published 1267 days, 4 hours, 18 minutes ago posted by http://www.google.com/profiles/liam.davieshttp://www.google.com/profiles/liam.davies 1268 days, 13 hours, 43 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Tuesday, December 01, 2009 2:23:28 AM GMT
If you have been searching and have found this then you have probably had a frustrating hour or more with an error of "No Corresponding Start Element Open". No doubt you have rebuilt your WCF service, updated the service reference, maybe even removed and re added the service reference. Still you'll have the error. So maybe one of a couple of things are happening. If your client is not WCF then maybe the generation of the service proxy is making some parameters optional in the request or response. In t... (more)
category: Web Dev | clicked: 85 | 2 comments | | source: instantdevelopment.blogspot.com
tags: WCF, Error
12
Shouts

Microsoft AJAX CDN – Now with SSL Support - ScottGu's Blog

published 1267 days, 4 hours, 18 minutes ago posted by mithumithu 1269 days, 14 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Monday, November 30, 2009 3:52:22 PM GMT
Back in September I blogged about the new Microsoft AJAX CDN (Content Delivery Network) service that the ASP.NET team is now providing. The CDN provides edge caching support for AJAX libraries (including jQuery and ASP.NET AJAX). The service is available for free, does not require any registration, and can be used for both commercial and non-commercial purposes. It offers a great way to speed up your external facing web-sites. (more)
category: How To | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET AJAX, ssl, Ajax CDN, ASP .NET, Ajax, ScottGu, Web-Sites
10
Shouts

IEnumerable.ToDictionary()

published 1267 days, 4 hours, 18 minutes ago posted by KodefuGuruKodefuGuru 1268 days, 11 hours, 25 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Tuesday, December 01, 2009 4:41:12 AM GMT
When retrieving data from web services, it’s sometimes obvious it was meant to be represented as a dictionary. In my coworkers case earlier today, he was getting back a simple class from a web service written in Java (don’t blame me for the exposed fields).public class KeyValuePairType { public string Key; public string Value; } He wanted to access the values as nature (err, C#) intended it:Dictionary (more)
category: How To | clicked: 0 | comment | | source: www.kodefuguru.com
tags: IEnumerable, Linq
9
Shouts

DotNetRocks - Show #503 - Weyer and Baier on WIF

published 1266 days, 7 hours ago posted by mithumithu 1267 days, 14 hours, 50 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 1:16:36 AM GMT
Christian Weyer and Dominick Baier talk about real world Windows Identity Foundation. This show wraps up our three-part series on WIF. (more)
category: Podcast | clicked: 0 | 1 comment | | source: www.dotnetrocks.com
tags: DotNetRocks, WIF, Identity Foundation, Identity, Foundation
10
Shouts

HanselMinutes - Show #189 - 2009 Holiday Geek Gift Guide with Richard Campbell

published 1266 days, 7 hours ago posted by mithumithu 1267 days, 23 hours, 37 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Tuesday, December 01, 2009 4:29:17 PM GMT
It's the day after Thanksgiving (in the US) and we're making our way deep into the holiday season. Scott chats with Richard Campbell and they each share their best gadget gifts for the geek in your life. (more)
category: Podcast | clicked: 1 | comment | | source: www.hanselminutes.com
tags: HanselMinutes
10
Shouts

NovoGeek.com - Krishna's weblog | Client side localization in ASP.NET using jQuery

published 1266 days, 7 hours ago posted by novogeeknovogeek 1268 days, 11 hours, 55 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Tuesday, December 01, 2009 4:11:50 AM GMT
Localization is a very important feature required in medium-large scale business applications. As always, ASP.NET makes developers life easy by providing inbuilt localization mechanism. However, if you are building a rich client side app using JavaScript/jQuery, you may need to fetch error messages and other strings from locale specific external file, without post back. This article gives pointers to implement client side localization in ASP.NET using jQuery. (more)
category: Web Dev | clicked: 0 | comment | | source: www.novogeek.com
tags: jQuery
9
Shouts

Windows Azure – Using DataSet with cloud storage

published 1266 days, 7 hours ago posted by gpeipmangpeipman 1268 days, 2 hours, 28 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Tuesday, December 01, 2009 1:38:37 PM GMT
On Windows Azure CTP some file system operations are not allowed. You cannot create and modify files located on server hard disc. I have small application that stores data to DataSet and I needed place where I can hold this file. The logical choice is cloud storage service of course. In this posting I will show you how to read and write DataSet to your cloud storage as XML-file. (more)
category: How To | clicked: 1 | 1 comment | | source: weblogs.asp.net
tags: Windows Azure, cloud storage