Telerik blogs

Latest

  • Productivity Testing

    Get training on Telerik WebUI Test Studio!

    Our partners from Falafel Software are starting 2-day online training sessions on Telerik Automated Testing Tools. This instructor-led course provides students with the skills to test applications built with the latest web technologies. You will learn Telerik WebUI Test Studio Developer Edition from the ground up and you will be able to automate any website or application: HTML, ASP.NET, JavaScript, AJAX, Silverlight and MVC.  See more details and register!
    May 27, 2021 1 min read
  • Productivity

    Revised Code Library projects

    In order to provide a better usability with the 2010 Q1 release we introduced the new Visual Designer for Telerik Open Access ORM. We have been focusing on what we can do to improve your experience using OpenAccess. We have also introduced the new Context replacing the Object Scopes and various types of mappings used to define our model (currently only in reverse mapping scenarios). This being a major change we felt we needed to revise our Code Library assets and show you how to use OpenAccess to its full potential. Below is a list of the revised examples : ·...
    May 27, 2021 1 min read
  • Productivity

    Using user-defined methods in a LINQ query

    As you are aware, for a given LINQ query Telerik OpenAccess ORM tries to push the query parts to the server as far as possible. Doing so minimizes the amount of data fetched from the server. For example, consider this very simple query that fetches all discontinued Product entities from the Northwind database. var query = from p in scope.Extent<Product>()             where p.Discontinued             select p;   The generated SQL statement would similar to -...
    May 27, 2021 2 min read
  • Productivity

    Telerik OpenAccess ORM Concurrency Control

    Telerik OpenAccess ORM provides you with a mechanism to handle the Concurrency control. Concurrency control is the management of contention for data resources. It ensures that the transactions are executed following the ACID rules. There are two concurrency control schemes: pessimistic and optimistic. A concurrency control scheme is considered pessimistic when it locks a given resource early in the data-access transaction and does not release it until the transaction is closed. A concurrency control scheme is considered optimistic when locks are acquired and released over a very short period of time at the end of a transaction. The Telerik OpenAccess supports several modes for Concurrency...
    May 27, 2021 2 min read
  • Productivity Testing

    Test Results Management and Analysis in WebUI Test Studio QA Edition

    I started the series of blog posts on the new QA Edition of WebUI Test Studio 2010 with the Test List Management. In the current article I’m describing the Test Results Management and Analysis capabilities of the brand-new standalone tool. The Result View The test list execution in the QA Edition produces the objects we call Run Results. One can review and manage those results in the Results View:   The Results View in the Standalone represents the run results via RadScheduler. Once you execute your test list we switch to the Results View adding the new result into ...
    May 27, 2021 4 min read