Sign in
Application design and programming in .NET
Design and code need to be coherent. The intent of having this blog is to share knowledge to achieve right balance between design and code.
Options
Blog Home
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.NET
.NET Framework
.NET Framework 3.5
.NET Framework 4.0
.NET Framework 4.5
Anonymous Methods
Azure
Content Controls
Database
DataTable
Denali
Dispose
Expression Trees
Extension Methods
Garbage Collector
Juneau
Open Xml 2.0 SDK
SQL Server 2008
Unit Test
Visual Studio 11
Visual Studio 2010
Visual Studio 2010 Ultimate
WCF
Word 2007
Word 2010
Archive
Archives
May 2012
(1)
February 2012
(2)
January 2012
(4)
December 2011
(1)
October 2010
(1)
September 2010
(1)
August 2010
(3)
July 2010
(3)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Application design and programming in .NET
Unit Test a project having external dependency(WCF Proxy) using Fakes & Visual Studio 11 Beta
Posted
over 1 year ago
by
Atul.Verma
3
Comments
In this post I’ll explain the steps to generate unit tests for a project which calls a WCF service using Fakes. Microsoft Fakes is an isolation framework for creating delegate-based test stubs and shims in .NET Framework applications. The Fakes framework...
Application design and programming in .NET
Visual Studio 11 database projects and Unit Testing SQL Server database
Posted
over 1 year ago
by
Atul.Verma
2
Comments
Please find the slides and demos for the session I presented at Microsoft User Group Hyderabad(MUGH). The agenda of the session was Overview about Database Projects Database development with SQL Server Data Tools(Code-named Juneau) DEMO – Database development...
Application design and programming in .NET
Visual Studio 11 Developer Day – Hyderabad(18th Feb 2012)
Posted
over 1 year ago
by
Atul.Verma
2
Comments
Microsoft User Group Hyderabad (MUGH ) invites you to Developer Day on 18th Feb 2012 ( 9:30 A.M to 1.30 PM ) at Microsoft Campus, Building 3 MPR Halls , Gachibowli , Hyderabad . Join us to meet Charles Sterling, Senior Program Manager, Visual Studio Team...
Application design and programming in .NET
Utility to generate Word documents from templates using Visual Studio 2010 and Open Xml 2.0 SDK - Part 4
Posted
over 1 year ago
by
Atul.Verma
2
Comments
This is the fourth part of this series. The code is available for download at http://worddocgenerator.codeplex.com/ . In Part 1 I discussed about Document generation using Content Controls and Open XML 2.0 SDK Creating Word templates Implementation and...
Application design and programming in .NET
How to use Pex and Moles to generate unit tests for a project having external dependency(WCF Proxy) using Visual Studio 2010 SP1
Posted
over 1 year ago
by
Atul.Verma
1
Comments
Source Code: In this post I’ll discuss about writing unit tests using Pex and Moles. Pex and Moles are Visual Studio 2010 Power Tools that help Unit Testing .NET applications. Pex automatically generates test suites with high code coverage. Right from...
Application design and programming in .NET
Utility to generate Word documents from templates using Visual Studio 2010 and Open Xml 2.0 SDK - Part 3
Posted
over 1 year ago
by
Atul.Verma
0
Comments
This is the third post of this series. The earlier posts can be read at Part 1 and Part 2 . The code is available for download at Utility Source Code . In Part 1 I discussed about Document generation using Content Controls and Open XML 2.0 SDK Creating...
Application design and programming in .NET
Utility to generate Word documents from templates using Visual Studio 2010 and Open Xml 2.0 SDK – Part 2 (Samples Updated)
Posted
over 1 year ago
by
Atul.Verma
0
Comments
This is the second post of this series. The previous post can be read at Part 1 . The next post can be read at Part 3 . The code is available for download at Utility Source Code . In Part 1 I discussed about Document generation using Content Controls...
Application design and programming in .NET
Utility to generate Word documents from templates using Visual Studio 2010 and Open Xml 2.0 SDK
Posted
over 2 years ago
by
Atul.Verma
27
Comments
This utility generates Word documents from templates using Content controls. The utility source code is available for download at http://worddocgenerator.codeplex.com/ . It has been created in Visual Studio 2010 and uses Open Xml 2.0 SDK which can be...
Application design and programming in .NET
How to upload/download a document in SharePoint 2010 using Client Context Object Model
Posted
over 3 years ago
by
Atul.Verma
1
Comments
In order to use ClientContext I need to add reference to two dll’s to my project i.e. Microsoft.SharePoint.Client.dll and Microsoft.SharePoint.Client.Runtime.dll. In this blog I’ll display how to Get ListItemCollection from SharePoint document list using...
Application design and programming in .NET
How to test a class member that is not public using Visual Studio 2010
Posted
over 3 years ago
by
Atul.Verma
3
Comments
There are various ways to test a Class member which is not public By making the private members public of a class under test Breaks the encapsulation principle API is modified just for the sake of testing By making the private members internal of a class...
Application design and programming in .NET
How to unit test SQL Server 2008 database using Visual Studio 2010 – Part 3
Posted
over 3 years ago
by
Atul.Verma
6
Comments
This is the last article of the series “How to unit test SQL Server 2008 database using Visual Studio 2010”. The previous articles are Unit test SQL Server 2008 - Part 1 – Focused on setting up environment, creating database project and executing simple...
Application design and programming in .NET
How to unit test SQL Server 2008 database using Visual Studio 2010 – Part 2
Posted
over 3 years ago
by
Atul.Verma
1
Comments
This is the second article I am writing on unit testing SQL Server 2008 database using Visual Studio 2010. The other articles are Unit test SQL Server 2008 - Part 1 – Focused on setting up environment, creating database project and executing simple unit...
Application design and programming in .NET
How to choose between IDisposable, IComponent, Component, MarshalByValueComponent and Control while implementing a Class
Posted
over 3 years ago
by
Atul.Verma
3
Comments
In this article I’ll discuss about the criteria behind choosing IDisposable, IComponent, Component, MarshalByValueComponent and base Control classes(System.Windows.Form.Control and System.Web.UI.Control) while implementing a Class. Prior to discussing...
Application design and programming in .NET
How to host a service in Azure and expose using WCF and Visual Studio 2010 : Issues Faced and Fixes
Posted
over 3 years ago
by
Atul.Verma
0
Comments
This blog is regarding my first attempt to explore “Hosting a service in Azure using WCF and Visual Studio 2010”, the issue I faced and the quick fixes required to make it running. You can explore the Windows Azure Platform at http://www.microsoft...
Application design and programming in .NET
INotifyPropertyChanging and INotifyPropertyChanged in Real Life using Expression Trees
Posted
over 3 years ago
by
Atul.Verma
0
Comments
Functional Requirements: Requirements when we need to achieve any or all of the functionalities listed below Undo/Redo functionality in an Application Any of user interface patterns e.g. MVC, MVP, MVVM etc Other patterns State Pattern, Events, Event handlers...
Application design and programming in .NET
How to unit test SQL Server 2008 database using Visual Studio 2010
Posted
over 3 years ago
by
Atul.Verma
4
Comments
In this article I’ll discuss about unit testing SQL Server 2008 Database project using Visual Studio 2010. As Unit tests test the part of the program integration testing becomes easier, moreover unit tests help enhancing, maintaining or extending a solution...
Page 1 of 1 (16 items)