forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathISessionFactoryConfiguration.cs
43 lines (36 loc) · 1.02 KB
/
ISessionFactoryConfiguration.cs
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
35
36
37
38
39
40
41
42
43
using System.Collections.Generic;
using NHibernate.Cfg.ConfigurationSchema;
namespace NHibernate.Cfg
{
public interface ISessionFactoryConfiguration
{
/// <summary>
/// The session factory name.
/// </summary>
string Name { get; }
/// <summary>
/// Session factory properties bag.
/// </summary>
IDictionary<string, string> Properties { get; }
/// <summary>
/// Session factory mapping configuration.
/// </summary>
IList<MappingConfiguration> Mappings { get; }
/// <summary>
/// Session factory class-cache configurations.
/// </summary>
IList<ClassCacheConfiguration> ClassesCache { get; }
/// <summary>
/// Session factory collection-cache configurations.
/// </summary>
IList<CollectionCacheConfiguration> CollectionsCache { get; }
/// <summary>
/// Session factory event configurations.
/// </summary>
IList<EventConfiguration> Events { get; }
/// <summary>
/// Session factory listener configurations.
/// </summary>
IList<ListenerConfiguration> Listeners { get; }
}
}