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
1
vote
2 answers

The name does not exist in current context

Im new to ASP.NET MVC3. I got stuck with this error, while I was doing the same thing as here in these…
1
vote
1 answer

How can I enable Telerik Openaccess ORM load external assemblies?

I'm new at Telerik OpenAccess ORM and I use other assemblies like CRISII (in house built for templates). I use these with other ORM's successfully like SubSonic but can't with Telerik. Here is my error: Error 73 Unable to load assembly…
1
vote
1 answer

Calling base constructor after body of current constructor

I am customizing one of the code generating templates for my Telerik OpenAccess ORM library. Due to business rules, I am having to put my user name and password to connect to the database in a config file as an encrypted string. I don't have the…
Justin
  • 6,373
  • 9
  • 46
  • 72
1
vote
1 answer

Commit exception in Telerik OpenAccess ORM

I had a previous question similar to this one, but in regards to entity framework. Since then, I have tried using Telerik OpenAccess. Here is my model: When running through the following function about once every 10 seconds, it behaves as expected…
Justin
  • 6,373
  • 9
  • 46
  • 72
0
votes
1 answer

Insert Group And Content in OpenAceess

I have a many to many relation beetween Group and Content table in sql and i imperilment this with a junction table .it name is GroupContent . when i try to insert a new Group and Content the Openaccess insert a Group and a Content and Dose not…
Mahdi jokar
  • 1,267
  • 6
  • 30
  • 50
0
votes
1 answer

Conditionally adding a check box in Telerik MVC Grid

I am using Telerik Grid for MVC 3 with aspx engine. I have to add a check box only on those rows which status are completed. columns.Bound(grid => grid.CaseStatus).Width(80); Above is my bound column now i have to check if CaseStatus value is some…
LovingMVC
  • 305
  • 3
  • 5
  • 15
0
votes
2 answers

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 tables i get this error : I download…
0
votes
0 answers

How to fill in question marks in Telerik's OpenAccess SQL query interpretation

I'm working on a several C# application, working with an SQL Server database, via Telerik OpenAccess. When an Exception is raised, the interpreted SQL query shows question marks instead of actual values. Hereby some examples of source code and…
Dominique
  • 16,450
  • 15
  • 56
  • 112
0
votes
0 answers

Reader closed error during Parallel ForEach handling automapper

I get data from a database by using telerik openaccess ORM. I store these in a list by using ToList() method. Then I use a Parallel.ForEach to map the model objects to DTO objects by using AutoMapper. An error occurs in the Parallel.ForEach after…
0
votes
0 answers

Exception being thrown but not caught

I am using the Telerik OpenAccess ORM. There are instances where an exception occurs when there are concurrent updates happening on the same database record. I am trying to catch an exception error that is being thrown: try { …
PixelPaul
  • 2,609
  • 4
  • 39
  • 70
0
votes
0 answers

telerik rad grid filer icon dispaly as square

Filter icon in telerik grid display as squere it not showing balck icon inside it. I used here telerik EnableEmbeddedBaseStylesheet="false" EnableEmbeddedSkins="false" properties. I needed icon like below
pooja
  • 29
  • 4
0
votes
1 answer

Telerik Openaccess ORM - How to insert a record

In Entity Model generated classes, we had SaveChanges() method. What's equalant function in Telerik ORM?
Riz
  • 6,746
  • 16
  • 67
  • 89
0
votes
1 answer

Direct method execution on the database server side using OpenAccess ORM

I'm trying to run a query on the database server side to load the entire filtered result into the application. I tried to perform filtering without using my own methods and it worked without errors. But if I use my own method in Expression Tree, I…
errve
  • 13
  • 3
0
votes
1 answer

Optimizing a LINQ query

I have a LINQ query that is returning the results and format I desire, but it seems a bit slow. Wondering if there is a way to improve its performance? The Items and Skus records are 1:1. For each Item there 5 ItemWhse and 5 SkuWhse records for each…
PixelPaul
  • 2,609
  • 4
  • 39
  • 70
0
votes
1 answer

LINQ: Group by and Any

When I send this LINQ query to my database var temp = dbContext.CustomerOrders .Where(myOrder => myOrder.CustomerID == CustomerID && myOrder.CustomerOrderLines.Any(ol => ol.Article != null &&…
Jeroen E
  • 57
  • 1
  • 10