假設我有以下的接口和類: public interface IFooRepo : IDisposable {
//...
}
public FooRepo : IFooRepo {
//Methods here
//Properly implement the IDisposbale.Dispose() here
}
我使用Autofac作爲IoC容
我正在實現一個簡單的REST服務,使用WCF Web API並嘗試設置HTTP頭以緩存響應。 對於一個簡單的得到這樣 http://localhost:49302/my/2
響應標題是這樣的: Server: ASP.NET Development Server/10.0.0.0
Date: Tue, 24 Jan 2012 18:18:44 GMT
X-AspNet-Version: 4
我正在加快使用WCF Web API。我想通過POST方法公開一個可以接受筆記的端點。我的問題是,我想支持筆記的多個表示。例如,我可能想要使用我們在其他地方使用的自定義XML序列化接受備忘錄,或者作爲atom:entry元素。我已經有格式化器,可以將這些反序列化爲Note類(我們自己的自定義類)或SyndicationItem。 雖然問題來了,我該如何定義方法?我目前得到這個: [WebInvok
我有這樣的方法,按預期工作。 [WebGet]
public IQueryable<BuildJobModel> GetCustomers()
{
var context = new MyDataContext(); // ADO.NET Entity Data Model
var query = from c in context.Customers
se