The optimistic-concurrency tag has no wiki summary.
0
votes
0answers
23 views
OptimisticConcurrencyException Issue
I got an issue regarding OptimisticConcurrencyException in Entity FrameWork.
I have a table named 'Optimist' with following fields in the database
Id(Primary Key)
Name
Age
and I followed Database ...
0
votes
1answer
50 views
Entity Framework Optimistic Concurrency with Update stored procedure (Julie Lerman example)
I'm having some difficulties understanding the Concurrency problem using Update store procedures. I'm following Julie Lerman's Programming Entity Framework and she gives the following code in an ...
0
votes
1answer
51 views
Problems with NHibernate optimistic concurrency in a web application scenario
I am using a Version field to control concurrency in a ASP.NET MVC 4 application.
Mapping:
<class name="User" table="Users">
<id name="Id">
<generator ...
1
vote
1answer
41 views
EntityFramework: about OptimisticConcurrencyException
I have two related tables: dbo.resources and dbo.reservation; dbo.resources has a foreign key that points to dbo.reservation with the ON DELETE SET NULL option. I also have an "after" trigger on ...
0
votes
1answer
48 views
Unexpected Optimistic concurrency exception
I try to update a field of my object, and save it right away to the database.
using (var ctx = new DataModel(_connectionString))
{
var MyObject it = ...
0
votes
1answer
33 views
Lightswitch 2011 Concurrency Control
I 've got two question.
Does Lightswitch 2011 support also pessimistic concurency control? If so, how?
Does optimistic control support ROWVERSION column on table from external data source or use ...
1
vote
0answers
56 views
Multiversion Timestamp-based concurrency control
In timestamp based concurrency control why do you have to reject write in transaction T_i on element x_k if some transaction with T_j where j > i already read it.
As stated in document.
If T_j is ...
3
votes
1answer
87 views
Understanding Entity Framework optimistic concurrency (database wins) pattern
See Resolving optimistic concurrency exceptions with Reload (database wins) :
using (var context = new BloggingContext())
{
var blog = context.Blogs.Find(1);
blog.Name = "The New ADO.NET ...
0
votes
1answer
226 views
Entity Framework 5 concurrency update from DTOs
We're using Framework 4.5 and EF 5.0 which shipped with VS 2012.
We have an entity that contains a column named RowVersion which I planned to use for concurrency checks. It'a a "Timestamp" value in ...
0
votes
0answers
125 views
Entity framework OptimisticConcurrencyException issue
I´m using entity framework 4. In a form, I have a DataGridView with a list of entities assigned as a DataSource. Then, I have two buttons. One that deletes the last entity(historial_borrar) of the ...
0
votes
3answers
100 views
Optimistic Concurrency while Updating Records in EF 4
I received this exception while debugging in VS 2012
An object with the same key already exists in the ObjectStateManager.
The ObjectStateManager cannot track multiple objects with the same
...
-1
votes
1answer
152 views
Knockout mapping options; map a JSON property to two view model properties
In order to do optimistic concurrency checking when posting/saving back the (possibly) modified view model to the server, I would like to take a copy of the original value in a separate variable than ...
0
votes
0answers
48 views
LINQ ChangeConflictException Issue / Custom Property
I have a database table with project tasks. Each task is based on a task template, which is stored in the same table. Tasks inherit properties/fields from their associated task template record ...
0
votes
1answer
315 views
DbContext, handling concurrency exception
The use EF DbContext. My entity object has rowversion column (SQL Compact edition ver 4), which is used for concurrency check (ConcurrencyMode = Fixed, StoreGeneratedPattern=Computed).
To force ...
0
votes
1answer
27 views
Which audio APIs can support speculative evaluation and correction?
Speculative evaluation (aka speculative execution) is an effective approach to achieving low-latency code at the cost of occasional rework (inefficiency). Speculative evaluation is a common low-level ...
0
votes
1answer
395 views
Getting Affected Rows by UPDATE statement in RAW plpgsql
This has been asked multiple times here and here, but none of the answers are suitable in my case because I do not want to execute my update statement in a PL/PgSQL function and use GET DIAGNOSTICS ...
1
vote
0answers
220 views
Hibernate/JPA version concurrency control and DTO/change command patterns
I would like to use @Version for optimistic concurrency control with JPA & Hibernate.
I know how it works in the typical scenario of two parallel transactions. I also know that if I have a CRUD ...
1
vote
1answer
65 views
Update properties of attached entity with databasevalue on query
I have entity classes that have an integer property (named ROW_VERSION) with ConcurrencyMode set to "Fixed" for optimistic concurrency checking. I increment the value of this column in my application ...
1
vote
1answer
1k views
How to enable concurrency checking using EF 5.0 Code First?
I would like to do a check-then-update in an atomic operation. I am using dbcontext to manage the transaction. I was expecting to get an exception if the record has been modified by another thread but ...
0
votes
1answer
144 views
Entity Framework entity update ignoring timestamp
I'm trying to implement optimistic concurrency checking. I make use of the generic repository and unit of work patterns.
I have introduced a Timestamp-attributed property (as byte array) to my ...
0
votes
1answer
290 views
Entity framework OptimisticConcurrencyException rethrown after refresh
I'm using a timestamp column to check the concurrency in my entity. The exception is correctly thrown when data is not the same in 2 different contexts.
When such an exception occurs when saving, I ...
0
votes
0answers
57 views
What is a good mobile ui design for resolving optimistic concurrency conflicts?
I need to find an interface design to allow a user to resolve optimistic concurrency conflicts in a mobile web-based application.
This question considers the issue of the message to the user: ...
0
votes
1answer
322 views
Concurrency exception with Devexpress ASPXGridView and EntityFramework 4.3.1
My Issue
I have a simple WebForms project for testing concurrency.
I am using:
1. Entity Framework 4.3.1 code first approach.
2. DevExpress ASP.net controls to visualize my data. Specifically an ...
1
vote
1answer
148 views
Pattern to overcome the lack of a ConflictMode.ContinueOnConflict implementation in the Entity Framework?
Linq To SQL's DataContext has an overload on SubmitChanges that allows for updates to continue when a Optimistic Concurrency Exception is thrown, and provides the developer with a mechanism to resolve ...
0
votes
0answers
85 views
Entity Framework - Caching Records
I am new to Entity Framework and LINQ and have a site using the ASP.Net memberhsip provider with entity framework. I have the aspnet_Users, aspnet_UsersInRoles and aspnet_Roles tables setup in the ...
1
vote
1answer
133 views
DB support for optimistic concurrency
I have a classic scenario: two updates to the same record that are based on a previously ready value from this record.
I am working under the assumption of optimistic concurrency. It is not hard for ...
1
vote
1answer
193 views
How does Entity Framework detect rows affected by an update statement
I'm using Entity Framework, model first, self-tracking entities with Npgsql provider (VS2010 - .NET 4 target).
I'm trying to track optimistic concurrency exceptions, but my problem is that as soon as ...
0
votes
0answers
491 views
Getting latest rowversion/timestamp value in update statement - Sql Server
I'm using rowversion columns for handling optimistic concurrency and want to get the new rowversion value back when I've done an update so that my data layer has the latest value and can perform ...
2
votes
1answer
319 views
Entity Framework, PostgreSQL, Optimistic Concurrency with hidden xmin column
I'm working with Entity Framework (Model First approach) against a PostgreSQL 9.1 database.
You probably all know that every table has a hidden column called xmin that I would use to help EF ...
0
votes
0answers
116 views
NHibernate Version with Sql Timestamp Update Deleted Record
The issue is more from Concurrency perspective. We are using Fluent NHibernate with Sql Timestamp based versioning for optimistic concurrency, now here is the scenario where I expect NHibernate to ...
1
vote
1answer
451 views
JPA - @Version - increase on read
I have implemented a simple entity ejb with a @version annotation. I expect that the version number will increase after each update of an entity.
@Version
public Integer getVersion() {
return ...
0
votes
1answer
266 views
Handling concurrency in spring mvc (hibernate)
I find it hard to believe that I am the only one wondering about the proper way to implement this but unfortunately my search didn't return any good solution.
Basically we have web apps implemented ...
2
votes
3answers
433 views
Empty Dictionary Error on Delete with SqlDataSource - ASP.net ListView
I'm trying to make a simple ListView with optimistic concurrency. It uses the VS-automatically-generated Delete, Insert, Update statements (except 1 change to insert: see code).
Insert and Edit work ...
0
votes
1answer
385 views
entity framework and some general doubts with the optimistic concurrency exception
I have some doubts about optimistic concurrency exception.
Well, For example, I retrieve some data from the database, I modify some registers and then submit the changes. If someone update the ...
0
votes
1answer
197 views
Convert view to tables and savechanges gives me optimistic concurrency exception
I am working with Entity Framework 4 (using self-tracking entities), and accessing a view, that is the merge of two tables. So when I update the information of the view, I send the STE of the view to ...
1
vote
1answer
922 views
EF Concurrency Handling with Timestamp attribute in Model First approach
I am trying to implement the solution given in Handling Concurrency with the Entity Framework in an ASP.NET MVC Application .
The article says:
Adding a Tracking Property to the Department Entity
...
4
votes
3answers
420 views
OptimisticConcurrencyException with System.Web.Providers
I'm using the new Universal Providers from Microsoft for session in SQL Server. The old implementation of session on SQL Server required a job (running every minute) to clear expired sessions. The new ...
1
vote
2answers
485 views
How can i force the DbUpdateConcurrencyException to be raised even if i am passing the FormCollection to my Post action method instead of an object
i have the following action method inside my asp.net mvc web application , which will raise a DbUpdateConcurrencyException as intended to handle any concurrent conflicts that might happen:-
...
0
votes
1answer
195 views
MySql with MVC3 gives an error when calling context.savechanges
I'm trying to get my MVC3 application to use MySql database instead of Sql Server 2008. I have created the associated database and objects in Mysql. And Updated the connection string in my ...
2
votes
1answer
1k views
Handle concurrency in Entity Framework
I am looking for the best way to handle concurrency while using Entity Framework. The simplest and most recommended (also on stack) solution is described here:
...
4
votes
2answers
463 views
Is it possible to make conditional inserts with Azure Table Storage
Is it possible to make a conditional insert with the Windows Azure Table Storage Service?
Basically, what I'd like to do is to insert a new row/entity into a partition of the Table Storage Service if ...
0
votes
0answers
500 views
Optimistic Concurrency is not working fine in my MVC web application
I am working on asp.net mvc3 web application using database first approach and entity framework Dbcontext to apply optimistic concurrency using the timestamp approach; to do so i apply the following ...
6
votes
1answer
343 views
ConcurrentDictionary's optimistically concurrent Remove method
I was looking for a method in ConcurrentDictionary that allows me to remove an entry by key, if and only if the value is equal to one that I specify, something like the equivalent of TryUpdate, but ...
2
votes
0answers
319 views
How to use optional attributes in web service update messages (DTOs)?
BACKGROUND
Assume you have a (SOAP) web service, BookService, managing books in a library. In the information model assume that the Book entity has the following attributes:
id
author
publisher
...
1
vote
0answers
169 views
Is there a Web Service (WS) Standard for Optimistic Locking?
Is there a Web Service Standard (WS*) for Optimistic Locking / Optimistic Concurrency Control (OCC) designed for interoperability?
There are a number of standards related to pessimistic concurrency ...
2
votes
3answers
507 views
RavenDB Catch 22 - Optimistic Concurrency AND Seeing Changes from Other Clients
With RavenDB, creating an IDocumentSession upon app start-up (and never closing it until the app is closed), allows me to use optimistic concurrency by doing this:
public class GenericData : ...
2
votes
2answers
594 views
RavenDB UseOptimisticConcurrency in Config?
Is there a way to set optimistic concurrency to true in Raven.Server.exe.config? Or, can it somehow be applied at the database level? On RavenDB's site, I see a couple of mentions of setting ...
1
vote
0answers
102 views
When Optimistic Concurrency is applied doesn't allow me to edit anymore ASP.Net?
When I try to check the box in my data source to check for optimistic concurrency I can no longer edit data. I get an error saying:
"No value given for one or more required parameters."
I am not ...
0
votes
3answers
472 views
Dataset optimistic concurrency
What would I need to do in my dataset C# client for handling optimistic concurrency?
This article does not go into many details except from use a timestamp
3
votes
1answer
524 views
optimistic concurrency with timestamp and typed dataset in asp.net
i'm creating a forum system for my web site with the use of c# and asp.net and for data access i'm using a typed dataset and for UI i'm using mvp pattern. in my database i have stored procedures which ...
