The telerik-open-access tag has no wiki summary.
9
votes
4answers
243 views
How to save byte[] using a procedure?
This stored procedure does not save the data, it seems to be a problem with the VARBINARY. I am passing a byte[] to it, but then it doesn't work. If I send this parameter as NULL it works.
I'm ...
2
votes
2answers
45 views
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 ...
2
votes
4answers
228 views
Sort Linq list with one column
I guess it should be really simple, but i cannot find how to do it.
I have a linq query, that selects one column, of type int, and i need it sorted.
var values = (from p in context.Products
...
1
vote
1answer
59 views
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 ...
1
vote
0answers
78 views
Best OR/Mapper to choose [closed]
I am starting a new project and i want to choose a good OP/mapper.what is the best OR/Mapper in dot net. I test Entity Framework 4.1 and Telerik OpenAccess .and i hear about Nhibernate and LLBLGEN.
...
1
vote
1answer
87 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
0answers
225 views
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 ...
0
votes
1answer
17 views
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 ...
0
votes
2answers
51 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
0answers
96 views
Error in WHERE…IN… clause using Telerik Open Access DataSource
I'm using an OpenAccessDataSource:
<telerik:OpenAccessDataSource ID="oadsPackages" runat="server"
ObjectContextProvider="NAMESPACE.VirtualOfficeContext, NAMESPACE"
...
0
votes
1answer
177 views
Telerik Openaccess ORM - How to insert a record
In Entity Model generated classes, we had SaveChanges() method. What's equalant function in Telerik ORM?
0
votes
4answers
198 views
“Argument expression is not valid” error with EF4 Linq sub select query
Any ideas as to why this query compiles, but then throws this runtime error:
Argument expression is not valid
I know I could change my db model, but in this case it's not possible.
Any ideas how ...
0
votes
1answer
226 views
Help with structuring a Telerik OpenAccess Domain Model
My company is about to start a new project using Telerik's OpenAccess ORM. This is a new product to us, and the first time we'll be using an ORM for a project instead of a Dataset based approach. We ...
0
votes
1answer
111 views
SubSonic and SQL Azure
I wrote an e-commerce app and used SubSonic 2.2 to generate the Data-Access-Layer.
It works perfectly with Sql Server 2005 and 2008.
However I would like to add support for SQL Azure.
Does anyone ...
-2
votes
1answer
80 views
What duration (in ms) is considered good for crud operations? [closed]
I am using a profiler to determine the speed of my sql operations but am not sure what duration in milliseconds is considered good and what speed is bad? If its bad I can alter the query or fetchplan. ...