Csla.Data.EF4.DbContextManager.GetManager(System.Data.Objects.ObjectContext, string)

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

2 Examples 7

1. Example

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

2. Example

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