简体   繁体   中英

Repository Pattern: Method signature for Edit/Delete methods

I'm trying to teach myself the repository pattern, and I have a best practices question.

Imagine I have the entity (this is a linq to sql entity but I've stripped all the linq to sql code and the data annotations attributes for clarity):

public class Person
{
    public int Id { get; set; }
    public string FirstName { get; set; }
    public string Surname { get; set; }
    public string Telephone { get; set; }
}

The abstract repo for my interface so far is:

public interface IPersonRepository
{
    IQueryable<Person> Person { get; }
    void Add(Person person);
    void SubmitChanges();
    // I want an Edit method here
    // I want a Delete method here
}

My question is this: What would be the method signature for the edit / delete methods? What would be the best practices for these? If Id for example was the only "uneditable" (ie the key) property of a Person, how would you implement this?

Should Edit take a Person parameter, and then the edit method code lookup the entity with the supplied id and edit that way?

Should delete take a Person parameter, or simply an id?

I'm trying to think what would be the most logical, clear way to do it, but I'm getting all confused so thought I'd ask!

Thanks!

I generaly have them both (entity and Id) for delete:

void Delete(Person person);
void DeleteById(int personId);

and one with on the entity for save:

void Save(Person person);

You might also consider to make a generic base repository for the standard CRUD actions:

public interface IBaseRepository<T>
{
    T GetById(Guid id);
    IList<T> GetAll();
    void Delete(T entity);
    void DeleteById(Guid id);
    void Save(T entity);
}

If you just need a Save(T entity) or a Insert(T entity) and Update(T entity) depends a little bit on your architecture.

Your Delete method should look like this.

    void Delete(Person person); 

If you need a more generic approach of the patterns, please take a look at this blog post: Entity Framework Repository & Unit Of Work T4 Template

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM