Tagged Questions
2
votes
1answer
11 views
Entity Framework - Share Transactions across Bounded Contexts
I am working on a very large application with over 100 modules, and almost 500 tables in the database. We are converting this application to WPF/WCF using Entity Framework 4.2 Code First. Our database ...
0
votes
0answers
36 views
Using two contexts in one Transaction and error with DTC
In one transation I use two different contexts:
using (TransactionScope scope = new TransactionScope())
{
using (Entities1 context = new Entities1())
{
....
}
using (Entities2 ...
0
votes
1answer
13 views
Transaction using TransactionScope is not rolled back in a multithreaded execution path
I have the following code:
Public Async Function Convert(schemaProgress As IProgress(Of ProgressReport), membersProgress As IProgress(Of Boolean), indexProgress As IProgress(Of Boolean)) As Task
...
1
vote
0answers
26 views
EntityFramework TransactionScope results in error if there's a call to asp.net security within its scope
I want to wrap some Entity Framework db I/o within a TransactionScope. In general it's working fine. But: I have some case that are basically like this:
using (var tx=new TransactionScope())
{
...
0
votes
0answers
25 views
Transactions and Entity Framework Pattern for Large Loads?
.NET 4.5/VS2012.
I am having a discussion about the pattern/placement of EF and Transaction code. The MSSQL 2012 database is called
almost exclusively via stored procedures, wrapped by EF. The ...
0
votes
1answer
69 views
Entity Framework Transaction not rolling back
The following code is in a loop which executes many times. When I execute the following code it occasionally generates a foreign key exception, which is fine because it is handled and I attempt to ...
1
vote
1answer
140 views
Entity Framework and ADO.NET with Unit of Work pattern
We have a system built using Entity Framework 5 for creating, editing and deleting data but the problem we have is that sometimes EF is too slow or it simply isn't possible to use entity framework ...
0
votes
1answer
249 views
MVC Scaffolding with Repository Pattern - Saving children objects as a transaction
I have been scouring forums and repository pattern blogs for some clear direction on how I should be coding my project and I'm stuck. Any help or guidance from you guys would be much approciated :)
I ...
0
votes
1answer
79 views
Atomic transaction for both file system and DB operations
I have a problem of implementing an atomic transaction that involves:
File system operations like add, edit, move, copy and delete
files.
Linq operations (Entity Framework) like add object and
save ...
4
votes
3answers
159 views
Concurrent reading and updating in a database table
I have an Oracle database that I access using Devart and Entity Framework.
There's a table called IMPORTJOBS with a column STATUS.
I also have multiple processes running at the same time. They each ...
0
votes
1answer
168 views
Should I use TransactionScope with DbContext
According to this link: EF Code First DBContext and Transactions
I should wrap the savechanges in a TransactionScope using statement.
I thought the SaveChanges works like or is a transactional ...
0
votes
1answer
78 views
Sharing oracle transaction between Entity Framework and Oracle Client
I'm working with a legacy application that accesses an oracle database through System.Data.OracleClient using an OracleTransaction like so:
Public Sub ExecuteOracleSql(ByVal sql As String)
...
4
votes
1answer
408 views
how to change isolation level?
I am using EF 4.0, and I would like to use the isolation level serializable, because in a transaction I would like to block a register when is read.
Well, in SQL Server I try to change the isolation ...
3
votes
2answers
352 views
ADO.Net Entity Framework Transactions
I want to ask which is the right way to use transactions in ADO.Net Entity Framework (call,rollback,commit) ? I have this code, but this give me exception
"Invalid operation. The connection is ...
1
vote
2answers
72 views
Clarification on c# delegates / methods
I've used delegates in the past so I'm familiar with their use and benefits. I've also done a lot of reading/research, but I'm trying to wrap my head around this and getting nowhere. I'd like to use ...
0
votes
0answers
153 views
Entity Framework transaction managment
Is it possible manually manage entityframework transactions.
I'm developing ASP.NET MVC application and I want to use custom ActionFilterAttribute, which will open transaction before execute ...
1
vote
1answer
132 views
Concurrency, Atomicty, and Isolation in Entity Framework
Based on some periodically and concurrently incoming data, I'm performing an operation that will either insert a new row into a table, or update an existing row in the same table. Whether it inserts ...
1
vote
1answer
118 views
Transaction is a good option to delete children records?
I have two tables, one table A that is the parent and other table B that is the children (1:N relationship).
If I want to delete the children records in the table B when I delete the parent in the ...
0
votes
0answers
70 views
Query on Read Uncomitted
I am currently trying to create an application which is based on a movie database. I am parsing some json files and inserting them into a SQL Server database.
So, foreach parent element from the json ...
0
votes
0answers
60 views
C#, entity framework how to solve this concurrency situation?
I have the following situtation. I have a table with the specifications of the components of a machine. There are components compatible with others, so I can use any of this compatible components to ...
0
votes
0answers
41 views
Transactions in EF 4 using stored procedures
I am currently writing a new tool to administer an existing legacy database. The data layer is using EF 4 and called through WCF. All access to the database is through stored procedures. There is no ...
0
votes
1answer
121 views
entity framework concurrency: transactions or concurrency fixed?
I need to make stock control, so I need to ensure that when I modified the amount of product, is doing in the right way. I am using Entity framework 4.0
For example, if I use a transaction, when I ...
1
vote
1answer
159 views
Custom atomic UPDATE commands inside SaveChanges()
For various reasons I need to be able to do several custom SQL UPDATE commands when I call SaveChanges on a DbContext. I want this to happen atomically so either both the regular SaveChanges and the ...
0
votes
1answer
304 views
What does DbConnection.EnlistTransaction do?
What does DbConnection.EnlistTransaction do?
Thank you for your time.
1
vote
5answers
91 views
Should a transaction be used in my case?
Here is a quote " So, if you are working with only one object context then you have already built-in support for database transactions when using the ObjectContext.SaveChanges method." I found here ...
3
votes
1answer
240 views
WF4 TransactionScope containing several custom activities with EF4 database updates
I have created several custom activities that update tables in my DB (in this case SQL Server Compact), using Entity Framework 4 with POCOs.
If I put more than one of these inside a WF4 ...
1
vote
1answer
214 views
Performing “atomic” operation “IncreaseIf” on database
I need to perform atomic operation check value of some field of some entity framework model and increase it if its value is 0.
I thought about transactions, sth like:
bool controlPassed = false;
...
0
votes
1answer
512 views
Is it necessary to manage transactions in Entity Famework 5? (multiple contexts)
in a case where there may be multiple DbContexts within a custom unit of work, would EF5 manage all the transactional requirements or is the code below still valid / required? If not, how far can the ...
2
votes
1answer
211 views
Best way to handle transactions dealing with stored procedures, Entity Framework within WCF?
Here's the big picture:
Within our new SOA based information system, we need to build several WCF services. Those services' main goal will be to handle business transactions.
Let's have an example:
...
0
votes
1answer
102 views
SQL Anywhere, Entity Framework 4 and Transactions
I have a process in my program that uses an Entity Framework 4 EDM. The entity context object contains function imports for calling stored procedures.
The process receives a batch of data from a ...
0
votes
1answer
302 views
Is there any reason to use ObjectContext transaction handling with DbContext's SaveChanges?
I have a code like this:
public abstract class DataContextBase
{
public DbContext DbContext { get; protected internal set; }
public ObjectContext ObjectContext { get; protected internal set; ...
0
votes
0answers
169 views
EF 4.3 DbContext: Read next available Id from db and perform INSERT, all within a Transaction
Situation: Developing a web UI front end for a system based on Oracle Database. The Database is provided to us as is. We have no access or rights to modify the schema or anything else. We can only ...
0
votes
0answers
97 views
FormView + EntityDataSource - make changes in the same transaction
I have a FormView which is bound to an EntityDataSource. I would like to write an audit event when changes are saved, in the same transaction (EntityFramework transaction, or SQL transaction). Is this ...
0
votes
2answers
1k views
Transaction scope timeout on 10 minutes
I have a long running transactionscope in c#. I told the scope that it should have a long timespan, but still I get a timeout. What could cause this?
TransactionOptions transactionOptions = new ...
4
votes
1answer
1k views
Unit Of Work Pattern with Database Transactions
I've been tried to get my head around this for a couple of days and there are lots of tutorials around unit of work and around TransactionScope but I can't find anything that talks about the two ...
0
votes
1answer
160 views
Code First Transaction wrapping
We have an existing database with a user table and a code base (written in VB.Net) that implements certain business logic and handles adding "legacy user" records to the database. A project I am ...
0
votes
1answer
137 views
understanding SQL Server timeouts
Working with Entity framework and had a couple of questions on timeouts.
This following article http://blogs.msdn.com/b/khen1234/archive/2005/10/20/483015.aspx
says
A client signals a query ...
0
votes
0answers
151 views
Recursive Call over an Entity Framework Objects raise SqlTransaction Error
I'm working with MVC 3 and Entity Framework with c# language. I have a Repository Class which implement an IRepository Interface. In my project, I need a recursive logic for delete objects. It has ...
0
votes
1answer
87 views
Transaction wrapped around Enterprise Data Library code + Entity Framework code
Hey I have a unique and troubling situation.
I am working on a project where my team has used a mixture of Enterprise Data Library plus Entity Framework. Obviously this probably not recommended but ...
1
vote
1answer
154 views
Transactions in Entity Framework
I need some idea in handling transactions in Entity Framework.
Let's consider a small example.
In my database I have a table A with auto generated identity column id, and I have a table B with a ...
1
vote
1answer
326 views
What things should I consider when using System.Transactions in my EF project?
Background
I have both an MVC app and a windows service that access the same data access library which utilizes EntityFramework. The windows service monitors certain activity on several tables and ...
4
votes
1answer
699 views
Ignore SqlTransaction.Commit within TransactionScope
We are in a process of gradually replacing legacy data access code by entity framework (4.3.1). In some occasions we can't avoid using both ways of data access in one unit of work. Ideally, this ...
0
votes
1answer
106 views
Guidance On Model Design With Navigation Properties
I'm using MVC 4 Code First With EF 5 and trying to normalize some data. I'll start off with three entities and give an example of my two different scenarios...
User Model
public class User
{
...
0
votes
1answer
182 views
Entity Framework - Model doesnt update after failed transaction
Working on a project using Entity Framework (4.3.1.0). I'm trying to figure out how to make my code work as a transaction, but for me it seems like my model doesnt update after the transaction has ...
0
votes
2answers
648 views
Managing transactions between EntityFramework and EnterpriseLibrary's DatabaseFactory
I'm working with an existing set of code that manages multiple database updates in a single transaction. Here is a simplified example:
Database db = DatabaseFactory.CreateDatabase();
using ...
4
votes
1answer
69 views
EF Update Formviews in a Transaction
I want to update two formviews within a transaction. if one of them fails the other should fail too. Formviews have their own entity datasources.
button1_click(..........)
{
...
0
votes
1answer
965 views
Preparing for multiple EF contexts on a unit of work - TransactionScope
I'm thinking of the options in regards to implementing a single unit of work for dealing with multiple datasources - Entity framework. I came up with a tentative approach - for now dealing with a ...
1
vote
1answer
878 views
Atomic transactions in Entity Framework 4.1 Code First without stored procedures
Is there a way to implement transactions in code first without having to write stored procedures?
I have some scenarios where multi-table entries need to be created with unique guids before a final ...
2
votes
1answer
1k views
Entity Framework - Transactions replacing SaveChanges(bool) with SaveChanges(SaveOptions)
This is a follow up question to Entity Framework - Using Transactions or SaveChanges(false) and AcceptAllChanges()?
Specifically about this line context2.SaveChanges(false);
Now SaveChanges(bool) ...
4
votes
1answer
633 views
Nested TransactionScope fails in tests
I'm using MSTest to run some automated tests against a MySQL 5.5.19 DB via the MySQL Connector and using EntityFramework 4.3.
I'm attempting to use TransactionScope in my DB-accessing class library ...




