Csla.Data.EF4.DbContextManager.GetManager(string, string, System.Data.Entity.Infrastructure.DbCompiledModel)

Here are the examples of the csharp api class Csla.Data.EF4.DbContextManager.GetManager(string, string, System.Data.Entity.Infrastructure.DbCompiledModel) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

3 Examples 7

1. Example

Project: csla
Source File: DbContextManager.cs
View license
public static DbContextManager<C> GetManager(string database)
    {
      return GetManager(database, "default", null);
    }

2. Example

Project: csla
Source File: DbContextManager.cs
View license
public static DbContextManager<C> GetManager(string database, string label)
    {
      return GetManager(database, label, null);
    }

3. Example

Project: csla
Source File: DbContextManager.cs
View license
public static DbContextManager<C> GetManager(string database, DbCompiledModel model)
    {
      return GetManager(database, "default", model);
    }