A
a__pierre
Guest
Hello,
Can somebody explain me why when I write
public partial interface IRepository<T>
{
IQueryable<T> Entities { get; }
IQueryable<T> All()
{
return Entities;
}
}
the Repository don't need to add the All function but here yes
public partial interface IRepository<T>
{
IQueryable<T> Entities { get; }
IQueryable<T> All();
}
I belive it is duplicate but that is not the question,
Thank you
Pierre MSN
Continue reading...
Can somebody explain me why when I write
public partial interface IRepository<T>
{
IQueryable<T> Entities { get; }
IQueryable<T> All()
{
return Entities;
}
}
the Repository don't need to add the All function but here yes
public partial interface IRepository<T>
{
IQueryable<T> Entities { get; }
IQueryable<T> All();
}
I belive it is duplicate but that is not the question,
Thank you
Pierre MSN
Continue reading...