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? ...
Have you used the OpenAccess ORM from Telerik? How does it compare to NHibernate? When should I consider using it over NHibernate? ...
Hi, 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 the value - it's 1 (or 2,3...) If I say before the serialization "int temp = object.Version" the seriazlier can save the value. There...
Hi there, 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; public int Id {get{return _id;} set{_id = value;}} } public interface IBar { int Id {get;set;} IFoo Foo {get;set;} } public...
Hi there, 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 = EntityObjectScopeProvider.GetNewObjectScope()) { var temp = new TempClient() { FirstName = "Rohan", Surname = "West" }; var entity = sc...
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 select from a menu of choices. For example, the File menu would have an open command that lets the user navigate to a file or directory o...
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 match my DB structure. (Example: I have a join between Users and OpenID's, and I need a 2 classes ( one for each table) and a class for t...
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 to reference the core objects as well. When I try to map them using Telerik Forward Mapping, I get a complaint that I am referencing a "No...
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 thought I'd ask for some help and hopefully someone out there has done this before. I want to simply bind my OpenAccess entities to a RadGrid, ...