Telerik blogs

Latest

  • Productivity Reporting

    Connecting Telerik Reporting to SQL Azure via Entity Framework

    Download SqlAzure.EntityFramework (C# VS2010) - 160KB In the previous blog post from the series we discussed how to connect Telerik Reporting to a SQL Azure database using Open Access ORM with the OpenAccessDataSource component. Now it is time to demonstrate how to perform this with another very popular ORM – Microsoft ADO.NET Entity Framework and the EntityDataSource component. For the sake of this example we assume an existing SQL Azure account with the Adventure Works sample database already installed. Let’s start with a new ADO.NET Entity Data Model. To connect to the SQL Azure database specify the server name and the login credentials of your SQL Azure account, then choose the AdventureWorksLTAZ2008R2 sample database as shown below: To create the entity model,...
    May 27, 2021 3 min read
  • Productivity

    Best Practice Debt and TeamPulse

    In a recent blog post, Joel Semeniuk talked about something he called “Best Practice Debt” – referring to the ever increasing amount of work your team will need to consider as you put off following best practices. The TeamPulse team has realized this as well, as this was one of the reasons we added Best Practice Analysis to TeamPulse early in the product release cycle. We found that even with our own teams, we needed to have an experienced and detailed oriented person look over our project looking for things that “smell bad” –sometimes even a great team doesn’t ...
    May 27, 2021 2 min read
  • Productivity

    Predictions for 2011

    Last year I made 14 predictions on what I thought might transpire in the world of technology in 2010. http://weblogs.asp.net/jsemeniuk/archive/2010/01/07/predictions-for-2010.aspx So, what do I think is in store for us in 2011? Here is goes… 1. The Kanban Influence: Last year I predicted that Lean Software Engineering will become a first class citizen. I was wrong; however, some Lean principles have been emerging in the form of Kanban. David Anderson is absolutely pioneering this wave, and I believe that the influence of Kanban will make its way deeper into the world of agile software development this year. More and ...
    May 27, 2021 8 min read
  • Productivity

    Managing Debt

    Do you ever find yourself too busy “fighting fires” to do things “the right way”? Do you know that there are better ways of managing your project, but you find that you just need to get things done and can’t be bothered to fix underlying problems because it may slow you down? Ever find yourself wondering if you will ever have time to go back to a feature you released a year ago to make it better and move valuable to your users? If so, you may be in debt. No, I’m not talking about your personal financial situation. I’m ...
    May 27, 2021 6 min read
  • Productivity Testing

    Mocking Exceptions and Events with JustMock Free Edition

    [Cross Posted from http://www.skimedic.com/blog] Mocking Exceptions When writing unit tests, it is important to cover not only the successful execution path (commonly referred to as the “Happy” path), but also test the code that gets executed when things don’t go right (commonly referred to as the “Unhappy” path).  Testing for situations where services or databases are unavailable as well as erroneous user input are important aspects of ensuring quality in software.  Remember, if you don’t test it, your users will! We modify the LoginUser method to throw a custom exception when there is an exception is thrown from the LoginService.  To test this,...
    May 27, 2021 5 min read