Click here to Skip to main content
15,892,965 members
Articles / Web Development / ASP.NET

Social News

Rate me:
Please Sign up or sign in to vote.
4.98/5 (115 votes)
12 Aug 2012CPOL22 min read 217.2K   5K   175  
A facebook-like application implementing KnockoutJs and SignalR
using SocialNews.Domain.Model;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace SocialNews.Data
{
    public class AuthorRepository : BaseRepository<Author>
    {
        static string sharedSecret = "social!@news";
        public bool ValidateUser(string userName, string password)
        {
            var authors = this.GetAllFilteredBy(x => x.Login.Equals(userName) && x.Password.Equals(password));
            return (authors.Count() == 1);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Instructor / Trainer Alura Cursos Online
Brazil Brazil

Comments and Discussions