Telerik blogs
  • Release

    New Feature: Artificial Fields

    Artificial fields, what are they good for? OpenAccess requires a persistent class model to work. This means that data not represented by a field in a persistent class cannot be stored or retrieved.  Sometimes you need to add new data to your application during runtime. With many other ORMs you have to add a field to your persistent class, recompile everything and update the database schema.  That is a little unhandy and looks like you always need a developer to do so. OpenAccess Artificial Fields can help you to add such new data definitions on the fly. You can specify...
    May 27, 2021 2 min read
  • Productivity

    Object Scope lifecycle management in web scenarios

    The stateless nature of the Http protocol brings quite a deal of concerns about the handling of the IObjectScope in a web application. Few questions usually arise when dealing with entity containers (like the DataContext in Linq to SQL or the IObjectScope in Telerik OpenAccess ORM): where to initialize the scope, where to dispose it, how to integrate with the Page’s lifecycle, etc.. In this post we share our views on the best-practices approaches that secure safe and consistent use of the IObjectScope in web scenarios. The desired result of the used patterns is to have one object scope, initialized on...
    May 27, 2021 2 min read
  • Productivity

    Partial Trust and Telerik OpenAccess ORM

    First let us apologize on the behalf of the whole team that we didn’t share this great feature of our product earlier. We will try to shed more light with this post. So what is with the partial trust? Why it is such a dramatic problem for a lot of applications? Let us define what the impediments are to every real application out there that runs in partial trust: Overview of Partial Trust Most common security mechanisms give rights to users based on their logon credentials (usually a password) and restrict resources...
    May 27, 2021 3 min read
  • Productivity

    Telerik OpenAccess ORM and Ado.Net Data Services Example Refreshed part III

    After we prepared our data service it is time to put some client UI into it. We will use 2 grids and a context menu. To start with, add a SilverLight application in your solution:
    May 27, 2021 5 min read
  • Productivity

    Telerik OpenAccess ORM and Ado.Net Data Services Example Refreshed part II

    In the first part of this post we looked into providing data to the client using ADO.NET Data Services and Telerik OpenAccess. However it is very rare just to present data, as usually some processing is done by the application on the client side, data gets modified and it is pushed back to the server for persistence. With ADO.NET Data Services this is done by implementing the IUpdateable interface by the data context class used on the server. NOTE: We do not implement IExpandProvider at the moment. They say that a picture is worth a thousand words, so same is true for the...
    March 05, 2025 3 min read