У меня есть сервис WCF.
У которого есть 3 контракта на обслуживание.
[ServiceContract(Name = "Utility"]
public interface IService { //method defination }
[ServiceContract(Name="Documents"]
public interface IDocumentService { //method defination }
[ServiceContract(Name = "Lists"]
public interface IListService { //method defination }
И это реализуется частичным классом.
Service.cs:
[ServiceBehavior(Name="SharePoint")]
public partial class Service : IService
{
*Implementation of IService Methods*
}
DocumentService.cs:
public partial class Service : IDocumentService
{
*Implementation of IDocumentService Methods*
}
ListService.cs:
public partial class Service : IListService
{
*Implementation of IListService Methods*
}
Теперь внутри этого проекта у меня есть файлы конфигурации.
Какиесодержит строку подключения к базе данных и другие параметры приложения
Я создал решение и добавил приложение-службу WCF 3.
Теперь я разделил службу на три различных приложения-службы с решением.Как и
[ServiceBehavior(Name="SharePoint")]
public class Service : IService
{
*Implementation of IService Methods*
}
DocumentService.cs:
public class DocumentService: IDocumentService
{
*Implementation of IDocumentService Methods*
}
ListService.cs:
public class ListService: IListService
{
*Implementation of IListService Methods*
}
Все 3 Приложение службы содержит его собственные файлы конфигурации .
Я хочу сделать общие файлы конфигурации среди всехПриложение службы thease.как делиться ими ??