/// <summary>
 ///     Initializes static members of the the
 ///     <see cref="CachingTableDataLoaderStore" /> class.
 /// </summary>
 static CachingTableDataLoaderStore()
 {
     store = new ConcurrentCache <
         CachingTableDataLoaderKey,
         CachingTableDataLoader>();
 }
 /// <summary>
 ///     Initializes static members of the <see cref="DbContainerStore" /> class.
 /// </summary>
 static DbContainerStore()
 {
     store = new ConcurrentCache <string, DbContainer>();
 }
 /// <summary>
 ///     Initializes static members of the <see cref="ObjectContextTypeStore" /> class.
 /// </summary>
 static ObjectContextTypeStore()
 {
     store = new ConcurrentCache <ObjectContextTypeKey, Type>();
 }
Exemple #4
0
 /// <summary>
 ///     Initializes static members of the <see cref="DbSchemaStore" /> class.
 /// </summary>
 static DbSchemaStore()
 {
     store = new ConcurrentCache <DbSchemaKey, DbSchema>();
 }
 /// <summary>
 ///     Initializes static members the <see cref="MetadataWorkspaceStore" /> class.
 /// </summary>
 static MetadataWorkspaceStore()
 {
     store = new ConcurrentCache <string, MetadataWorkspace>();
 }