Hello,
Look this code :
C#readonly IPocoDal pocoDal;
public CustomerBusiness(IMapper mapper, IPocoDal pocoDal) => this.pocoDal = pocoDal;
It's impossible t o declare "mapper" because the constructor use "Expression body syntax".
A good solution when you try to "declare" a second field it's expand the constructor (same for a method).
Best regards,
Hi Christian,
Thank you for the code sample and the screencast. I have reproduced the issue and we are working on it.