Tagged Questions

Telerik OpenAccess ORM is a tool that supports development of data-oriented software applications. Telerik OpenAccess ORM tool is targeted at solving the object-relational impedance mismatch.

learn more… | top users | synonyms

7
votes
4answers
3k views

Compare and Contrast NHibernate and OpenAccess from Telerik

Have you used the OpenAccess ORM from Telerik? How does it compare to NHibernate? When should I consider using it over NHibernate?
1
vote
1answer
92 views

Telerik's OpenAccess ORM and DevArt's dotConnect for Oracle

Has anyone tried to connect to an Oracle DB using DevArt's dotConnect data provider among with OpenAccess ? OpenAccess works excellent with Oracle.DataAccess.Client, but how about dotConnect? Is it ...
1
vote
1answer
79 views

How to truncate table using Telerik OpenAccess ORM?

I've tried to ObjectScope.GetSqlQuery("TRUNCATE TABLE %table_name%", null, null).Execute(); and ObjectScope.GetOqlQuery("TRUNCATE TABLE %ClassName%Extent").Execute(); The first row does ...
1
vote
1answer
183 views

OpenAccess ORM Fluent API

Suppose I have an assembly A which has all the entities and mappings using fluent api. this assembly needs enhancing, I get it. but what happens to the assembly which is using assembly A. does it need ...
1
vote
1answer
503 views

Programatic control using Telerik OpenAccess ORM and the RadGrid

Ok, between following documentation, posts and videos that use syntax and tools that are no longer used or available, I'm really lost as to how to go about even using Telerik's OpenAccess. So I ...
1
vote
1answer
450 views

Telerik OpenAccess ORM - Is anyone using it?

I'm working on a new project right now and am thinking of using an ORM beyond that of Linq to SQL. I've currently got Linq to SQL wired up into a repository, but I'm not loving the way my Repo has to ...
1
vote
3answers
130 views

How close is Python to being able to wrap it in a workbook type skin?

With my luck this question will be closed too quickly. I see a tremendous possibility for a python application that basically is like a workbook. Imagine if you will that instead of writing code you ...
1
vote
1answer
326 views

Telerik OpenAccess and multiple conditions in the where clause

I have just written a few unit tests and to my horror it failed. Here is my test... [TestMethod] public void FetchWithMoreThanOneConditionUsingKnownTypes() { using (var scope = ...
1
vote
3answers
395 views

How to use interfaces with Telerik OpenAccess

I am trying to implement my persitent classes using interfaces. I have created the following public interface IFoo { int Id {get;set;} } public class Foo : IFoo { private int _id; ...
1
vote
2answers
282 views

DataContractSerializer skip OpenAccess Version's value

I'm using OpenAccess disconnected model. When I try to deserialize an object with DataConractSerializer, the Version property of this object is 0 - but only in the xml. If I debug the code and watch ...
0
votes
1answer
9 views

Error in using Embeded Firebird

I used telerik OpenAccess to connect to firebird Database with this ConnectionString : "ServerType=1;User=SYSDBA;Password=masterkey;Dialect=3;Database=TEST.fdb" and when i want to select my ...
0
votes
2answers
183 views

Use calculated / scalar value in LINQ query

I'm using LINQ on a Telerik OpenAccess generated data model, to setup a search query and get the results. This all works very well and the code looks very nice. But now i need to add one more thing, ...
0
votes
0answers
58 views

OpenAccess and RIA Services with Inheritance

Can anyone help me out on this one? I am having problems with saving an entity that has inheritance in that everytime I save it throws a EntityConflict. When I examine the exception it appears that ...
0
votes
1answer
355 views

Which ORM has better performance !! OpenAccess or LLBLGen Pro?

I'm working on a new project right now and thinking of using an ORM beyond that of OpenAccess or LLBLGen Pro or Subsonic.This project may have great quantities and hits concurrent,So our performance ...
0
votes
1answer
90 views

Telerik OpenAccess cross configuration file reference problem?

I have 2 libraries and one of them is a core library with some core persistent objects such as Person, Address, etc. I have another library which contains some different persistent objects that need ...