Linq2SQL and Repository Pattern: Unit Testing
In previous part we saw how to implemant a Repository pattern over Linq2SQL. Let's see in more detail how we can test this. If you are not new to unit testing and mocking, feel free to skip. … more
In previous part we saw how to implemant a Repository pattern over Linq2SQL. Let's see in more detail how we can test this. If you are not new to unit testing and mocking, feel free to skip. … more
In a recent project, we were requested to create a new web application that worked on an existing data model that was created using Linq2SQL and .NET Framework 3.5 SP1. We were asked to use best … more
On my WPF course someone asked how we could move the focus to the next control on the page when the enter key is pressed on a textbox. Let's suppose we have a data entry form which mostly is … more