Are these equivalent syntaxes for setting component lifestyle?
Component.For<IFoo>() .ImplementedBy<Foo>() .LifeStyle.Is(LifestyleType.Transient) Component.For<IBar>() .ImplementedBy<Bar>() .LifeStyle.Transient
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, they are.
Until there’s a complete documentation on the fluent interface, the best source for information is the tests.
Another source of information is this wiki page.