, . , , , , 3/4.
, , - . , , , CMS. , IQueryable, , # POCO ( CLR).
public interface ICMSRepository {
IQueryable<ContentSection> GetContentSections();
void SaveContentSection(ContentSection obj);
}
, LINQ to SQL, POCO . , IQueryable, , . :
public static IQueryable<ContentSection> WithID(this IQueryable<ContentSection> qry, int ID) {
return from c in qry select c;
}
ICMSRepository _rep = new SqlCMSRepository();
var sec = _rep.GetContentSections().WithID(1).SingleDefault();
Interface - , .
, ASP.Net, . , , singleton, (XML, , SQL, MySql ..). singleton . .
.