Building a Chat Web App With Signal R, Part 2: Listing 3

The PersonHub Delete() method.

public bool Delete(int id)
{
    bool result = false;

    try
    {
        using (var context = new PersonContext())
        {
            var existingPerson = context.People.FirstOrDefault(x => x.Id == id);

            if (existingPerson != null)
            {
                context.People.Remove(existingPerson);
                context.SaveChanges();
                Clients.All.personRemoved(id);
                result = true;
            }
        }
    }
    catch (Exception)
    {
        Clients.Caller.raiseError("Unable to update the Person.");
    }

    return result;
}

About the Author

Eric Vogel is a Senior Software Developer for Red Cedar Solutions Group in Okemos, Michigan. He is the president of the Greater Lansing User Group for .NET. Eric enjoys learning about software architecture and craftsmanship, and is always looking for ways to create more robust and testable applications. Contact him at [email protected].

comments powered by Disqus

Featured

Subscribe on YouTube