Telerik blogs

Latest

  • Productivity Testing

    Don'ts in Software Testing

    Sounds like a book title, doesn’t it? No, I haven’t written a book on software testing. I’m on my way though, I just need fifteen or twenty years of Alan Page’s, Ken Johnston’s and BJ Rollisson’s experience and I’m ready to go with a new testing bible like the just announced “How We Test Software at Microsoft®”. Check out Alan’s and BJ’s posts on the subject here and here. I’m sure the authors, who lead the Microsoft testing division of about 8000 testers, have a lot to share, but I was also happy to see the post ...
    May 27, 2021 4 min read
  • Productivity Reporting

    Hide duplicates in a column

    In some cases you might want to hide duplicates in a single "column" - for example if you group by a field, it would be nice to present the data in a more clean way.
    May 27, 2021 1 min read
  • Productivity Reporting

    Using Report parameters UI to sort by column

    Our 'series' of tips and tricks for Telerik Reporting continues with this neat approach to sort the report by column. We would create a sample report using the AdventureWorks database that comes with our examples and use a single table with few columns that are easy to remember namely FirstName, LastName, Title .. you know the drill :) In order to use the built-in parameters area of the report, we would need to create a report Parameter that lists the column names. We can do that by creating a Business object that holds this for us:   public class ColumnSelector : DataTable     {        ...
    January 27, 2025 2 min read
  • Productivity

    SQL Server 2008 Error: 'Saving changes is not permitted.'

    Tonight I ran into the following error message when using a freshly installed version of SQL Server 2008 in a new project. Saving changes is not permitted. The changes you have made require the following tables to be dropped and re-created. You have either made changes to a table that can't be re-created or enabled the option Prevent saving changes that require the table to be re-created. The error appeared after I created a new table, set up it's primary key column, clicked save, and then tried to modify and re-save the table again. The reason this error dialogue is being...
    May 27, 2021 1 min read
  • Productivity

    Reverse engineering step by step

    Hi everybody, My name is Jan Blessenohl and I am working on the new Telerik object relational mapper named OpenAccess ORM. In the next posts I would like to guide you through the first steps with OpenAccess. This post is about reverse engineering. The following posts will use this feature to build running applications. - OpenAccess comes with 2 possible ways to generate the persistent model: Forwad Mapping: Write the persistent classes first and let then OpenAccess generate the database schema. Reverse Engineering: Design the database schema first, let OpenAccess read it and then create all the classes for you. This step by step...
    May 27, 2021 3 min read