Đây là lớp generic Tôi đang làm việc với:C# bê tông ghi đè chung lớp
public interface IRepository<T> where T : EntityObject
{
RepositoryInstructionResult Add(T item);
RepositoryInstructionResult Update(T item);
RepositoryInstructionResult Delete(T item);
}
public class Repository<T> : IRepository<T> where T : EntityObject
{
RepositoryInstructionResult Add(T item)
{ //implementation}
RepositoryInstructionResult Update(T item);
{ //implementation}
RepositoryInstructionResult Delete(T item);
{ //implementation}
}
Bây giờ tôi đang tìm cách để thỉnh thoảng thay đổi hành vi của các phương pháp khi t: một loại cụ thể. Có phải điều gì đó như sau có thể xảy ra không? Cố gắng đặc biệt này đưa ra một lỗi (Lỗi 5: Khai báo một phần của 'Kho lưu trữ' phải có cùng tên thông số kiểu theo cùng thứ tự).
public class Repository<Bar> //where Bar : EntityObject
{
RepositoryInstructionResult Add(Bar item)
{ //different implementation to Repository<T>.Add() }
//other methods inherit from Repository<T>
}
'BarRepository: Repository ... ', và đánh dấu những methods augmentible như ảo/ghi đè trong các lớp cơ sở/con, tương ứng. –
@Anthony: Tại sao không đăng câu trả lời đó? (Cái mà tôi sắp sửa gửi = P) – benjer3