Questions tagged [telerik-open-access]

Telerik's object-relational mapper is a powerful framework for mapping the objects in your object-oriented domain model to your relational database tables, views, and/or stored procedures. This mapping is done within Visual Studio and is independent from source code and database - it is a virtual layer, which can be used from within the programming language to access and manipulate data.

Telerik's object-relational mapper is a powerful framework for mapping the objects in your object-oriented domain model to your relational database tables, views, and/or stored procedures. This mapping is done within Visual Studio and is independent from source code and database - it is a virtual layer, which can be used from within the programming language to access and manipulate data.

138 questions
2
votes
3 answers

Telerik OpenAccess vs. SubSonic in simple speed test (not a "which is better")

I have been using SubSonic 2 for ~5 years now and have loved it. However, for the past six months I've been toying with the idea of moving either to SubSonic 3 or to a similar ORM tool. Since my company uses plenty of Telerik's tools, I thought I'd…
AJ Tatum
  • 653
  • 2
  • 15
  • 35
2
votes
1 answer

Telerik Open Access error: Exception: System.ArgumentNullException: Value cannot be null. Parameter name: converterName

I am currently experiencing an issues where a handful of queries to stored procedures hooked up via Telerik Open Access (v2015.1.87.3777) are returning the following error: Exception: System.ArgumentNullException: Value cannot be null. Parameter…
Mark Erasmus
  • 2,305
  • 6
  • 25
  • 37
2
votes
1 answer

Telerik Open access Audit Trail

How can i best implement an audit trail for an application that uses Telerik open access. I have posted this question on their support but there has been no reply for days (sucks) I have already tried the Tracking events within each scope but am…
user437329
2
votes
1 answer

How to open the telerik report file in C# and access the DataSource of Report?

I trying to open the trdx File inside the C# after that I want to access the data Source or Data Table of it.
2
votes
2 answers

Telerik Data Access generate classes automatically

Until the recent release I was happily using Telerik Data Access in a database first way: Created the database schema in external DB designer Generated a fluent model in Visual Studio Whenever I did a database change I either re-ran the generation…
Vilém Procházka
  • 1,060
  • 2
  • 17
  • 28
2
votes
1 answer

Trouble Attaching an object to a Telerik OpenAccess Data Context

I am writing some tests to excersize the repository layer of a library built on Telerik OpenAccess ORM and am running into some problems with managing the Context. I am creating a new RegionEntity object and adding it to the database. I use the…
Gary O. Stenstrom
  • 2,284
  • 9
  • 38
  • 59
2
votes
1 answer

Will I use stored procedures or direct write code in a mvc web project?Which is better?

My web project is using telerik dataaccess ORM,when I deal with the data,I can use stored procedures or direct write code.I find it is more efficient to use stored procedures.But some of my workmate say that using stored procedures is difficult to…
Lyly
  • 718
  • 1
  • 8
  • 17
2
votes
2 answers

Need Architectural Advice for Large scale .Net MVC Project

I will try to explain in as much detail as possible. There may be similar questions here on SO and I've gone through all of those but none of those have what I needed. So, I'm starting out with a large scale C# MVC5 based Web Project and I want to…
Basit Nizami
  • 345
  • 4
  • 14
2
votes
0 answers

Order of lambda expressions causes Failure: Unknown parameter. Parameter name: parameterExpression Actual value was pcount

I am getting an error when I simply flip the Skip/Take and the Order By in the select statement and cannot see how to resolve this. The offending statement: DBContext.Symbols.OrderBy(Function(obj) obj.Identifier).Skip((StartRec - 1) *…
Dave Friedel
  • 1,028
  • 1
  • 14
  • 20
2
votes
1 answer

OpenAccess nuget package and Cannot find resource EntitiesModel.rlinq embedded in assembly exception

We want to remove the necessity of installing OpenAccess on the client and build machine and plan to do that using OpenAccess nuget packages. I've been following the guide and installed OpenAccess.CodeFirst nuget packages for all projects in…
mrBob
  • 385
  • 6
  • 22
2
votes
0 answers

Virtual file not found using servicestack 4.0.5 after adding Telerik OpenAccess datacontext

I'm testing out the new 4.0.5 Service stack (previously I was using version 3), and starting afresh I just can't seem to get my service to start when I add Telerik OpenAccess. I'm using Telerik's OpenAccess to talk to a MSSQL database again, which…
Terry Wells
  • 73
  • 1
  • 5
2
votes
3 answers

Telerik OpenAccess. Using other type of collection instead of IList

I created a class that inherits from ObservableCollection and wanted to use it instead of IList. When I modified the generator to generate ObservableCollection or MyCollectionClass(inherits ObservableCollection) it gives this…
Dilshod
  • 3,189
  • 3
  • 36
  • 67
2
votes
1 answer

creating membership with telerik openacces ORM and

I want to made a simple membership system for my application using altairiswebsecurity.codeplex.com I use telerikopenaccess and I am not sure how this can help me. someone please help me from this…
1
vote
1 answer

Lock request time out period exceeded - Telerik OpenAccess ORM

I have a big SQL Server 2008 R2 database with many rows that are updated constantly. Updating is done by a back end service application that calls stored procedures. Within one of those stored procedures there is a SQL cursor that recalculates and…
Tys
  • 3,592
  • 9
  • 49
  • 71
1
vote
1 answer

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 nothing. And the second throw Exception: line 1:10:…
Enlightened
  • 239
  • 2
  • 13
1
2
3
9 10