http://baldi.myopenid.com/
Name: http://baldi.myopenid.com/
Score: 4,555.45
Last Seen: 666 days, 12 hours, 39 minutes ago
Member Since: 11 January, 2010
DotNetShoutout
atom rss
4
Shouts

Entity Framework 4.1 Annotations–Part 1 « Sankarsan’s Journal

posted by http://sankarsan.myopenid.com/http://sankarsan.myopenid.com/ 717 days, 22 hours, 59 minutes ago
Sunday, June 05, 2011 6:41:02 AM GMT
Entity Framework 4.1 has introduced the Code First Approach with it’s Fluent API and Annotations.In this series of posts we will focus on the Annotations part of it and how it can be used to build the domain model and map it to the database. We will use the standard School data model to explain most of the stuff and take different examples in some of the special cases.The table diagram is shown below: We will start with the very basics, i.e. I have POCO and I want to map it to a database table.I need... (more)
category: How To | clicked: 17 | comment | | source: sankarsan.wordpress.com
tags: Annotations, EF 4.1
4
Shouts

Generating code with Preprocessed T4 Text Templates

published 716 days, 10 hours, 22 minutes ago posted by lenielleniel 717 days, 13 hours, 30 minutes ago
Monday, June 06, 2011 7:18:03 PM GMT Sunday, June 05, 2011 4:09:28 PM GMT
Last Friday I was writing some code to populate a database with country/state information. I wrote the code to include Brazil and its 27 states but when I realized that I’d have to do the same thing again with USA and its states I thought that it’d be boring. Luckily we have T4. Read on... (more)
category: How To | clicked: 50 | comment | | source: www.leniel.net
tags: T4, Code Generation, Visual Studio
4
Shouts

Serialization/Deserialization

published 716 days, 10 hours, 22 minutes ago posted by syedtayyabalisyedtayyabali 717 days, 5 hours, 24 minutes ago
Monday, June 06, 2011 7:18:03 PM GMT Monday, June 06, 2011 12:15:47 AM GMT
Serialization is the process of converting object into linear sequence of byte, while deserialization is constructing object from that serialized linear sequence of byte. Serialization allows to store the content of object on file, transmit across network or send to another process. Serialization is used in distributed application. .Net provide clean way to achieve serialization and deserialization in just few lines of code. BinaryFormatter.Serialize/Deserialize methods are used. (more)
category: How To | clicked: 29 | comment | | source: programming360.blogspot.com
tags: .NET, Serialization, deserialization
7
Shouts

Creating custom node styles for WPF Diagrams

published 720 days, 23 hours, 48 minutes ago posted by traskjdtraskjd 722 days, 2 hours, 2 minutes ago
Thursday, June 02, 2011 5:51:24 AM GMT Wednesday, June 01, 2011 3:37:43 AM GMT
This article discusses how developer can use the Mindscape WPF Diagrams product to create an custom diagram with custom node types. Customizing node types can mean creating normal diagram nodes, but it could be that developers want to build any type of composed surface - a Visual Studio style window designer, visual DSL tools, and anything else you can imagine. This article gets users started on the road to customization. (more)
category: UX | clicked: 15 | comment | | source: www.mindscapehq.com
tags: visual, Diagram, WPF, Mindscape
2
Shouts

Monthly News Digest @SilverlightZone - May 2011 | Kunal's Blog

posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 722 days, 2 hours, 1 minute ago
Wednesday, June 01, 2011 3:38:27 AM GMT
Silverlight-Zone.com completed it's 5 months with more than 1,700 news items. Thank you everyone for supporting us all the time. In May, we aggregated 308 posts in Silverlight-Zone and shared all these links over Twitter and Facebook page to reach out to maximum people. In this post I am going to share you the best picks of the month. Top rated posts were on Windows Phone 7 by Doug Holland, Naveed Tejani, Paul, Amit Chatterjee and Abhishek Sur. Read to find out the top links. (more)
category: Metro | clicked: 0 | comment | | source: www.kunal-chowdhury.com
tags: Silverlight, WP7, Silverlight Zone, SilverlightZone
2
Shouts

How to implement SQL Caching in ASP.NET (Poll based SQL Cache dependency)?

posted by dotnetfundadotnetfunda 722 days, 3 minutes ago
Wednesday, June 01, 2011 5:36:48 AM GMT
In this article, we are going to learn how to implement SQL Caching in ASP.NET using Poll based SQL Cache dependency. The push based SQL Cache dependency shall be covered in other article. In poll based, SQL Cache dependency checks for the updated data after every specified duration. With the help of Caching, we can retain pages or data across HTTP requests, so that we can reuse them without recreating them. (more)
category: Web Dev | clicked: 2 | comment | | source: www.dotnetfunda.com
tags: ASP .NET
3
Shouts

Submit Form Cross Page Posting Server.Transfer methods In ASP.NET

published 727 days, 9 hours, 23 minutes ago posted by amitjainamitjain 729 days, 21 hours, 36 minutes ago
Thursday, May 26, 2011 8:16:49 PM GMT Tuesday, May 24, 2011 8:03:18 AM GMT
Cross page posting in ASP.NET To transer data using cross page posting we need to use FindControl Method we can write code like this (more)
category: Web Dev | clicked: 1 | 1 comment | | source: csharpdotnetfreak.blogspot.com
tags: cross page posting, server transfer, submit form, ASP.NET
6
Shouts

Windows Phone 7 MVVM #4 - RadPhoneApplicationFrame and StateManager

published 725 days, 20 hours, 23 minutes ago posted by KodefuGuruKodefuGuru 729 days, 1 hour, 2 minutes ago
Saturday, May 28, 2011 9:16:40 AM GMT Wednesday, May 25, 2011 4:37:12 AM GMT
In our previous post we were able to utilize event triggers from System.Windows.Interactivity along with EventToCommand from MVVM Light to enable users to tap an item in our RadJumpList and then send a message out to perform some functionality – in our case, navigating to the page in question.  But where does this message go and how is it received? ... (more)
category: Metro | clicked: 9 | comment | | source: blogs.telerik.com
tags: Windows Phone 7, Telerik, RadControls, RadJumpList, MVVM Light Toolkit
6
Shouts

Chris Eargle's Blog > Parameter Refactorings in JustCode

published 725 days, 20 hours, 23 minutes ago posted by KodefuGuruKodefuGuru 729 days, 1 hour, 4 minutes ago
Saturday, May 28, 2011 9:16:40 AM GMT Wednesday, May 25, 2011 4:35:27 AM GMT
The internal build 1 of JustCode comes with three new refactorings to easily manipulate method parameters.Move to Parameter There are times when one has hardcoded a constant value within the body of a method, but the method would have more flexibility if the value were a parameter instead. This refactoring allows you to move the variable to a parameter, and it will automatically update calls to the method... (more)
category: Agile | clicked: 1 | 1 comment | | source: blogs.telerik.com
tags: JustCode, Refactoring, Telerik, Parameters
3
Shouts

New jQuery Plugin: FunkyFocus

published 725 days, 20 hours, 23 minutes ago posted by http://derans.myopenid.com/http://derans.myopenid.com/ 727 days, 59 minutes ago
Saturday, May 28, 2011 9:16:40 AM GMT Friday, May 27, 2011 4:40:15 AM GMT
So this jQuery plugin was built to help my end-users know immediately what section of a form they’re working on. Also, don’t blame me for the name. It was given to my new plugin by my wife because I couldn’t think of anything “catchy”. Basically what this thing does is changes the background of sections of forms or individual inputs. It’ll be better to post screenshots to get the idea…so…here you go… (more)
category: Web Dev | clicked: 39 | comment | | source: derans.blogspot.com
tags: jQuery
5
Shouts

The Busy Developers Guide to Mango.

published 722 days, 17 hours, 54 minutes ago posted by mbcrumpmbcrump 726 days, 16 hours, 20 minutes ago
Tuesday, May 31, 2011 11:45:38 AM GMT Friday, May 27, 2011 1:19:35 PM GMT
You’re a busy developer and you have read article after article of “What’s new in WP7 Mango” but you are only interested in knowing “What does this mean for me as a developer ?”. This is where I step in and give you the “need to know” with a quick blog post. What is it? The Beta to Windows Phone 7.1 Developer Tools named ("Mango") was released on May 24th, 2011. This means you can download the bits right now, but as far as having Mango on your phone you are going to have to wait. Let’s hit the bulle... (more)
category: Metro | clicked: 26 | comment | | source: michaelcrump.net
4
Shouts

Nodo vs Mango - Windows Phone ListBox Performance Improvements in Action

published 723 days, 12 hours, 21 minutes ago posted by http://kodierer.blogspot.com/http://kodierer.blogspot.com/ 726 days, 22 hours, 52 minutes ago
Monday, May 30, 2011 5:18:29 PM GMT Friday, May 27, 2011 6:47:27 AM GMT
There were quite a few complaints about the Windows Phone's ListBox scrolling performance in the past. The Windows Phone team obviously heard it and heavily worked on the performance and responsiveness of the whole platform and the ListBox in particular. The video in the blog posts shows a side-by-side comparison of a Nodo device with build 7392 and a prototype device with a Mango prebuild. (more)
category: Metro | clicked: 18 | comment | | source: kodierer.blogspot.com
tags: WP7, mango
5
Shouts

WP7 for iPhone and Android Developers - Introducing the Execution Model

published 723 days, 12 hours, 21 minutes ago posted by KMilKMil 726 days, 16 hours, 22 minutes ago
Monday, May 30, 2011 5:18:29 PM GMT Friday, May 27, 2011 1:17:46 PM GMT
In this article, Kevin Hoffman provides an overview of the Windows Phone 7 execution model. Knowing how your application starts, suspends, resumes, and interacts with the OS will help make your applications better behaved citizens which will, in turn, make your customers happier. (more)
category: Metro | clicked: 15 | 1 comment | | source: www.silverlightshow.net
tags: iOS, iPhone, Windows Phone 7, WP7, wp7dev, Push Notifications, Android
6
Shouts

Customizing Visual Studio Extension Icon in Visual Studio 2010

published 723 days, 12 hours, 21 minutes ago posted by dharadhara 726 days, 22 hours, 48 minutes ago
Monday, May 30, 2011 5:18:29 PM GMT Friday, May 27, 2011 6:51:54 AM GMT
If you have deal with Visual Studio Extension ( VSIX) , you must have seen, after the extension installation default icons are predefined ( As shown in below image ). In this post I am going to describe how you can customize /change the default visual studio extension icon and can provide your... (more)
category: Web Dev | clicked: 19 | 1 comment | | source: beyondrelational.com
tags: .NET, VS2010, ASP.NET
6
Shouts

Creating Animated Splash screen in Windows Phone 7

published 723 days, 12 hours, 21 minutes ago posted by dharadhara 726 days, 22 hours, 49 minutes ago
Monday, May 30, 2011 5:18:29 PM GMT Friday, May 27, 2011 6:50:49 AM GMT
Creating a beautiful splash screen is always great to see for any application. Windows Phone 7 being no exception to it, you want to give the user great look and feel while loading the application using your Splash Screens. In this article, I am going to spend some time by talking about some of the probable... (more)
category: Web Dev | clicked: 15 | 1 comment | | source: beyondrelational.com
tags: .NET, Silverlight, Windows Phone 7
3
Shouts

What is Character Spacing in Silverlight 5 Controls

posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 742 days, 2 hours, 1 minute ago
Thursday, May 12, 2011 3:38:12 AM GMT
There are many new feature announced to support Text advancements in Silverlight 5 Beta. Among them, one is the character spacing. This feature adds spacing between characters inside a TextBlock, RichTextBox and other control elements. In this post we will demonstrate the use of this new feature and also showcase a simple demo to make you understand better. Read it and start learning Silverlight 5 features. (more)
category: Metro | clicked: 0 | comment | | source: www.kunal-chowdhury.com
tags: Silverlight5, Silverlight, XAML, Silverlight 5
3
Shouts

tag in HTML5

posted by http://jalpesh.blogspot.com/http://jalpesh.blogspot.com/ 741 days, 22 hours, 28 minutes ago
Thursday, May 12, 2011 7:11:17 AM GMT
HTML5 is great new version of HTML with great features. I am exploring that in great details for our forthcoming projects. I found a great tag that can be used in all websites for the navigation. (more)
category: Web Dev | clicked: 0 | comment | | source: jalpesh.blogspot.com
tags: ASP.NET 4, html5
2
Shouts

C# and .NET interview questions - Show us the steps to create setup & deployment project for windows application?

posted by questpondquestpond 737 days, 14 hours, 38 minutes ago
Monday, May 16, 2011 3:01:51 PM GMT
This is a typical .Net interview question which is asked to understand if you know how to create deployment packages. When you are done with your application you would like to give your end user a setup package rather than the source code. (more)
category: Web Dev | clicked: 1 | comment | | source: computerauthor.blogspot.com
tags: .Net Interivew Questions, C# interview Questions
3
Shouts

Multi Column Text support in Silverlight 5 | Kunal's Blog

posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 737 days, 1 hour, 53 minutes ago
Tuesday, May 17, 2011 3:46:30 AM GMT
Silverlight 5 has now support for Multi Column Text. By using this feature you will be able to show your text content in column wise. If you are working for a news publisher company or want to publish your text content in column format, this feature will help you definitely. If you implemented this in your application, your text content will automatically position itself in next column if user resizes the application. So, want to learn about it? Let's discuss on it with a simple example. Read to know more. (more)
category: Metro | clicked: 0 | comment | | source: www.kunal-chowdhury.com
tags: Silverlight5, Silverlight 5 Beta, Silerlight 3.0
3
Shouts

Creating and Editing DataTable records programmatically in asp.net using C#

posted by aamirhaaamirha 736 days, 13 hours, 9 minutes ago
Tuesday, May 17, 2011 4:30:29 PM GMT
Switcher (more)
category: Web Dev | clicked: 0 | comment | | source: www.aspxtutorial.com
Previous 1 2 3 4 5 6 7 8 9 10 ... 79 80 Next