Ejemplo n.º 1
0
 public static User GetUserDetail(string userName)
 {
     using (var ctx = new SongSearchContext()) {
         ctx.ContextOptions.LazyLoadingEnabled = false;
         return ctx.GetUserGraph(userName);
     }
 }