blob: ca87c9037d98fc76b895106cbea591a10f61e772 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
//-----------------------------------------------------------------------
// <copyright file="Model.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace RelyingPartyLogic {
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Data.EntityClient;
using System.Data.Objects;
using System.Linq;
using System.Text;
public partial class DatabaseEntities {
/// <summary>
/// Clears the expired nonces.
/// </summary>
/// <param name="transaction">The transaction to use, if any.</param>
internal void ClearExpiredNonces(EntityTransaction transaction) {
this.ExecuteCommand(transaction, "DatabaseEntities.ClearExpiredNonces");
}
/// <summary>
/// Clears the expired associations.
/// </summary>
/// <param name="transaction">The transaction to use, if any.</param>
internal void ClearExpiredAssociations(EntityTransaction transaction) {
this.ExecuteCommand(transaction, "DatabaseEntities.ClearExpiredAssociations");
}
}
}
|