實現(xiàn)代碼
班戈網(wǎng)站建設公司創(chuàng)新互聯(lián)公司,班戈網(wǎng)站設計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為班戈上千余家提供企業(yè)網(wǎng)站建設服務。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站建設要多少錢,請找那個售后服務好的班戈做網(wǎng)站的公司定做!1、新建接口類:IRepository.cs,規(guī)范各個操作類的都有那些方法,方便管理。
using System;using System.Collections.Generic;using System.Linq;using System.Linq.Expressions;using System.Text;namespace CMS.Entity.Interfaces { public interface IRepositorywhere T:class { /// /// 添加 /// /// 實體對象 void Add(T entity); ////// 更新 /// /// 實體對象 void Update(T entity); ////// 刪除 /// /// 實體對象 void Delete(T entity); ////// 刪除 /// /// 條件(lambda表達式) void Delete(Expression> where); /// /// 根據(jù)ID獲取一個對象 /// /// 主鍵ID ///對象 T GetById(long Id); ////// 根據(jù)ID獲取一個對象 /// /// 主鍵ID ///對象 T GetById(string Id); ////// 根據(jù)條件獲取一個對象 /// /// 條件(lambda表達式) ///對象 T Get(Expression> where); /// /// 獲取所有數(shù)據(jù) /// ///所有數(shù)據(jù) IQueryableGetAll(); /// /// 根據(jù)條件獲取數(shù)據(jù) /// /// 條件(lambda表達式) ///數(shù)據(jù) IQueryableGetMany(Expression > where); /// /// 根據(jù)條件獲取記錄數(shù) /// /// 條件(lambda表達式) ///int GetCount(Expression > where); /// /// 關閉代理 /// void CloseProxy(); ////// 打開代理 /// void OpenProxy(); ////// 是否有指定條件的元素 /// /// 條件(lambda表達式) ///bool IsHasValue(Expression > where); } }