ISingleResult and IEnumerable

本文关键字:IEnumerable and ISingleResult | 更新日期: 2023-09-27 18:25:12

有人能解释什么是ISingleResult,以及ISingleResultIEnumerable之间的区别吗。我们什么时候应该使用它?。请解释此代码。

public ISingleResult<CityMaster> SelectCityMaster()
    {
        try
        {
            return _ObjLinq.SelectCityMaster();
        }
        catch { throw; }
    }

ISingleResult and IEnumerable

这是一个Linq2Sql。基本上,它表示查询将返回一个表,而不是两个或三个表。