MikeBorozdin

Stories kicked by MikeBorozdin

Behaviour-Driven Development in .NET with SpecFlow and White(devblog.cloudreach.co.uk)

submitted by MikeBorozdinMikeBorozdin(1146) 4 days, 21 hours ago

This article gives an overview of behaviour-driven development (BDD), talks about .NET tools for BDD (SpecFlow) and UI testing (White) and proceeds with a working example giving hands on BDD in .NET read more...

1 comment |category: |Views: 191

tags: another

Developing Applications for Visio with Visual Studio(www.mikeborozdin.com)

submitted by MikeBorozdinMikeBorozdin(1146) 8 months, 21 days ago

This tutorial demonstrates how to extend the Visio functionality by writing an Visio add-in with VSTO, creating a standalone application with both Windows Forms and WPF, and finally by building a browse application with WPF (XBAP). read more...

add a comment |category: |Views: 5

tags: another

WPF DataGrid CheckBox Single Click Checking/Unchecking(www.mikeborozdin.com)

submitted by MikeBorozdinMikeBorozdin(1146) 11 months, 13 days ago

WPF DataGrid has a very annoying behaviour of forcing users to click twice on a checkbox in order to check or uncheck it. There are a number of solutions proposing handling mouse preview events and switching a DataGrid into the edit mode manually. The problem with such solutions is that the require writing quite a lot of extra code that seems to be an overkill for such a minor, yet irritating problem. I propose a better option, to use a DataGridTemplateColumn instead of DataGridCheckBoxColumn. read more...

add a comment |category: |Views: 31

tags: another

8 Best open source alternative to NHibernate. (www.findbestopensource.com)

submitted by solidstonesolidstone(500) 1 year, 7 months ago

NHibernate is one of the best ORM library in .NET to build data access code faster. We identified best open source alternative to NHibernate. According to the requirement pick any library and build the data access layer in .NET. read more...

1 comment |category: |Views: 760

tags: another

Graphical Tools for SQL Server CE 4.0(www.mikeborozdin.com)

submitted by MikeBorozdinMikeBorozdin(1146) 1 year, 8 months ago

SQL Server CE 4.0 CTP has promising features, but it's a bit unclear how to manage its databases. This post explains how to use WebMatrix and SQL Server Toolbox for that task. read more...

add a comment |category: |Views: 40

tags: another

Introducing SQL Server CE 4.0 CTP(www.mikeborozdin.com)

submitted by MikeBorozdinMikeBorozdin(1146) 1 year, 8 months ago

Learn what SQL Server CE 4.0 means for ASP.NET developers. Find out where you can get it and how to install. And finally learn how you can create tables with no tools provided. read more...

2 comments |category: |Views: 344

tags: another

Calculate Age from Date Of Birth using SQL Server(www.sqlservercurry.com)

submitted by mopenmopen(3596) 1 year, 10 months ago

Script to calculate the Age in Years, Months, Days, Hours and Minutes read more...

add a comment |category: |Views: 321

tags: another

Improve Performance by Reducing IO – Creating Covered Index(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 2 years, 2 months ago

Here is my quick blog post on how Cover Index can Improve Performance by Reducing IO. read more...

add a comment |category: |Views: 327

tags: another

How to not suck at a techincal interview(www.bradcunningham.net)

submitted by FoovanadilFoovanadil(155) 2 years, 4 months ago

CORRECT LINK THIS TIME. Tips to improve your marketability during a technical interview. Mostly a rant :) read more...

7 comments |category: |Views: 668

tags: another

IE6 Update: Help kill Internet Explorer 6 (BlogEngine.NET Extension)(gordon-breuer.de)

submitted by AnheledirAnheledir(209) 2 years, 4 months ago

IE6 is like an illness that just won't go away but now there is another new project to kick his ass: www.ie6update.com - With this small extension you are able to include this project into your BlogEngine.NET with just copying a single file. read more...

2 comments |category: |Views: 318

tags: another

Best of 2009: the 5 most popular posts(codeclimber.net.nz)

submitted by simonechsimonech(10.1k) 2 years, 4 months ago

Simone looks at the last year's stats and lists the most popular posts we wrote in 2009. And also writes his overall top 10 read more...

1 comment |category: |Views: 527

tags: another

Design Patterns are not a Silver Bullet and the State of the Programmi(mikeborozdin.com)

submitted by MikeBorozdinMikeBorozdin(1146) 2 years, 4 months ago

Design patterns are not a universal tool that can be applied to any project or be used with any programming language. Quality code can be produced without implementing any pattern or even without using OOP. One shouldn’t think of their colleagues as of bad developers if they don’t know the names of fancy design patterns. Moreover, not any single programming project is a business application. read more...

add a comment |category: |Views: 11

tags: another

Exploring .Net 4 Features - Tuples(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 5 months ago

Taking a look at some of the new features which are part of .Net 4. We will be focusing this episode on Tuples. Tuples allow you to return multiple values from a method with simplicity and ease by allowing you to dynamically create a return object which is typed for your specific needs. read more...

6 comments |category: |Views: 755

tags: another

Kiss your databse only once!!!(c-sharpcorner.com)

submitted by nareshshnareshsh(824) 2 years, 7 months ago

This article explains about how to update the multiple records in the data controls to the server in a single transaction. read more...

add a comment |category: |Views: 601

tags: another

Design Patterns – Which to use When? Take the Quiz!(dotnetcube.com)

submitted by dncdudedncdude(1350) 2 years, 7 months ago

I received several questions on how to pick a Design Pattern, which motivated me to write this post. As it was mentioned in the Design Patterns overview article, there is no rule of thumb in selecting a Design Pattern. Developers should not choose a design pattern and design a solution around it. Instead they need to analyze at a higher level, the problem they are attempting to solve and pick a Design Pattern that is most appropriate. read more...

add a comment |category: |Views: 704

tags: another

Introduction to Model View Control (MVC) Pattern using C#(c-sharpcorner.com)

submitted by maheshchamaheshcha(1620) 2 years, 7 months ago

The benefits of using the Model-View-Control (MVC) pattern in our development projects is that we can completely decouple our business and presentation application layers. Furthermore, we will have a completely independent object to control the presentation layer. read more...

2 comments |category: |Views: 461

tags: another