summaryrefslogtreecommitdiffstats
path: root/projecttemplates/RelyingPartyLogic/RelyingPartyApplicationDbStore.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-01-07 08:54:52 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2010-01-07 08:54:52 -0800
commit1767c767e5e52cb28cf8e0bdeebdfe051caa1fd2 (patch)
treefd31e926fdfd22ec8819469a23b743d4253c07b0 /projecttemplates/RelyingPartyLogic/RelyingPartyApplicationDbStore.cs
parent36bb738e4cc937a8b04321ef85b098d16d0793c8 (diff)
parentbbbebebce7d9306c48247f44be5b649c908b7a67 (diff)
downloadDotNetOpenAuth-1767c767e5e52cb28cf8e0bdeebdfe051caa1fd2.zip
DotNetOpenAuth-1767c767e5e52cb28cf8e0bdeebdfe051caa1fd2.tar.gz
DotNetOpenAuth-1767c767e5e52cb28cf8e0bdeebdfe051caa1fd2.tar.bz2
Merge branch 'v3.3'
Diffstat (limited to 'projecttemplates/RelyingPartyLogic/RelyingPartyApplicationDbStore.cs')
-rw-r--r--projecttemplates/RelyingPartyLogic/RelyingPartyApplicationDbStore.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/projecttemplates/RelyingPartyLogic/RelyingPartyApplicationDbStore.cs b/projecttemplates/RelyingPartyLogic/RelyingPartyApplicationDbStore.cs
index 9a2f8bb..e13633a 100644
--- a/projecttemplates/RelyingPartyLogic/RelyingPartyApplicationDbStore.cs
+++ b/projecttemplates/RelyingPartyLogic/RelyingPartyApplicationDbStore.cs
@@ -134,7 +134,7 @@ namespace RelyingPartyLogic {
/// </remarks>
public void ClearExpiredAssociations() {
using (var dataContext = new TransactedDatabaseEntities(IsolationLevel.ReadCommitted)) {
- dataContext.ClearExpiredAssociations();
+ dataContext.ClearExpiredAssociations(dataContext.Transaction);
}
}