你可以这样做:
public interface IEntity { IQueryable GetAll(); } public class Dealer : IEntity { public IQueryable GetAll() { } }