FatTiger

Results 9 comments of FatTiger

```csharp [ApiController] public class AccountController{ //此处需要使用Autowired注入 [Autowired] private readonly ServiceA _serviceA; public AccountController(ServiceA serviceA){ _serviceA = serviceA; } public void TestAction(){ _serviceA.TestMethod(); } ``` 这是由于我们只查找了具有`Autowired`特性标记的依赖进行还原。 下个版本考虑支持对构造函数注入的依赖进行还原。

这是个动态代理,它实际上创建的是代理对象。代理对象加入到容器中,是无法还原出本来的对象的。 你可以`typeof`一下你得到的`service`实例,应当是个`proxy class`。 @JamesYing

> Hello 这个问题有被解决嘛 > > ``` > 看起来并不可行,一旦构造函数注入和属性注入并用,构造函数注入的Service是无法应用属性注入的 > 例如: > class ServiceA{ > [Autoired] > public ILogger Logger{get;set;} > } > > class ServiceB{ > public ServiceB(ServiceA a){ >...

I want to try this, can you assign me?

@Tratcher Can you help me find the corresponding file? I'm not very familiar with it.

If Transfer-Encoding has multiple values, is `chunked` always at the end? Otherwise I should check all the values.

I tracked the source code and found that the `TimeOnly` and `DateOnly` types are not supported [here](https://github.com/DapperLib/Dapper/blob/a4b1c56a152dec8bf2de8f4d0a84e60626938555/Dapper/SqlMapper.cs#L168). I am not sure if adding these two types to the collection and...

> (Moving [dotnet/sdk#387 (comment)](https://github.com/dotnet/sdk/issues/387#issuecomment-265608133)) > > This will work fine if you build using desktop MSBuild / Visual Studio, but .NET Core MSBuild has this. > > This can be...