CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
TransactionIsolationLevel.cs
Go to the documentation of this file.
1#if !NETFX_CORE && !(ANDROID || IOS)
2//-----------------------------------------------------------------------
3// <copyright file="TransactionIsolationLevel.cs" company="Marimer LLC">
4// Copyright (c) Marimer LLC. All rights reserved.
5// Website: https://cslanet.com
6// </copyright>
7// <summary>Specifies an isolation level for transactions</summary>
8namespace Csla
9{
15 {
42 }
43}
44#endif
TransactionIsolationLevel
Specifies an isolation level for transactions controlled by TransactionalAttribute
@ ReadUncommitted
Shared locks are issued and no exclusive locks are honored.
@ RepeatableRead
Locks are placed on all data that is used in a query, preventing other users from updating the data.
@ Serializable
Prevents updating or inserting until the transaction is complete.
@ Unspecified
Shows that different isolation level than the one specified is being used, but the level cannot be de...
@ ReadCommitted
Shared locks are held while the data is being read to avoid reading modified data,...