openaccess

Error in using Embeded Firebird

被刻印的时光 ゝ 提交于 2019-12-12 05:16:21
问题 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 tables i get this error : I download Firebird-2.5.1.26351-0_x64_embed.zip and copy the following File in my output folder: fbembed.dll firebird.conf firebird.msg ib_util.dll icuin30.dll icudt30.dll icuuc30.dll 回答1: Use ClientLibrary connection string parameter to specify where the fbembed.dll is (or put it

Telerik OpenAccess and multiple conditions in the where clause

老子叫甜甜 提交于 2019-12-11 04:46:40
问题 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 = scope.Extent<ClientEntity>().Where(c => temp.FirstName == c.FirstName && temp.Surname == c.Surname).FirstOrDefault(); Assert.IsNotNull(entity); Assert.AreEqual(entity.FirstName, temp

Compare and Contrast NHibernate and OpenAccess from Telerik

元气小坏坏 提交于 2019-12-03 13:24:35
问题 Have you used the OpenAccess ORM from Telerik? How does it compare to NHibernate? When should I consider using it over NHibernate? 回答1: I'm wondering the same thing myself. On one hand, there's NH with its free, open-source self, but with limited support options. On the other, a fairly new addition to a well-known tool provider's box, OA. OA costs money, but you get support. NH is free, but support has been known at least in my brief experience to be limited and slow in coming. I think both