0
IIS에서 내 응용 프로그램을 실행하여 서비스가 예상대로 작동하는지 테스트합니다. 또한 다른 내부 클래스 작업에 대한 단위 테스트를 실행합니다.WCF 및 단위 테스트에 대한 다른 SessionContext
Fluently.Configure()
.Database(MySQLConfiguration.Standard
.ConnectionString(myconnectionString)
.ShowSql()
)
.CurrentSessionContext<WcfOperationSessionContext>()
//.CurrentSessionContext("call")
.Mappings(m =>
m.FluentMappings
.AddFromAssemblyOf<DtoDifficulty>())
.BuildSessionFactory();
당신은 //.CurrentSessionContext("call ")으로, 주석 라인을 알 수 있습니다
다음은 내 세션 공장 구성입니다. IIS에서 서비스를 실행할 때 위의 행을 사용하십시오. .CurrentSessionContext < WcfOperationSessionContext>(), 단위 테스트를 실행할 때 .CurrentSessionContext ("call").
실행중인 케이스를 알고 이러한 옵션 중 하나를 자동으로 설정하는 방법이 있습니까?