Exemplo n.º 1
0
 public static User GetUser(this System.Security.Principal.IIdentity identity)
 {
     if (identity.IsAuthenticated)
     {
         using (var db = new MapsDbContext())
         {
             return(db.Users.Find(identity.GetUserId()));
         }
     }
     else
     {
         return(null);
     }
 }
Exemplo n.º 2
0
 public Repository(MapsDbContext context) : base(context)
 {
 }
Exemplo n.º 3
0
 /// <summary>
 /// Builds the object with the specified context
 /// </summary>
 /// <param name="context">Database context</param>
 public RepositoryWithTypedId(MapsDbContext context)
 {
     Context = context;
     DbSet   = Context.Set <T>();
 }