我为我的模型使用实体框架(edmx文件),我正在使用WCF来访问我的模型。 当尝试返回实体数据模型列表(示例表对象)时,我收到错误:
服务器未提供有意义的回复;这可能是由于合同不匹配,过早的会话关闭或内部服务器错误造成的。
这是我的WCF代码。 IService.cs:
[ServiceContract(CallbackContract = typeof(IPesananCallBack), SessionMode = SessionMode.Required)]
public interface IPelayanWebService
{
[OperationContract]
List<table> GetAllTables();
}
Service.cs:
public List<table> GetAllTables()
{
TableModel model = new TableModel();
return model.GetAllTables();
}
我在模型中的代码:
public List<table> GetAllTables()
{
using (restoicdbEntities ent = new restoicdbEntities())
{
return ent.table.ToList();
}
}
在我的客户端,我只是调用该函数,并发生错误。 我是否必须创建自己的数据合同?无论如何都要从edmx生成datacontract?
更新 这是来自实体框架的生成代码:
[EdmEntityTypeAttribute(NamespaceName="restoicdbModel", Name="table")]
[Serializable]
[DataContractAttribute(IsReference=true)]
public partial class table: EntityObject
{
[EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)]
[DataMemberAttribute()]
public global::System.Int32 ID_TABLE
{
get
{
return _ID_TABLE;
}
set
{
if (_ID_TABLE != value)
{
OnID_TABLEChanging(value);
ReportPropertyChanging("ID_TABLE");
ID_TABLE = StructuralObject.SetValidValue(value);
ReportPropertyChanged("ID_TABLE");
OnID_TABLEChanged();
}
}
}
private global::System.Int32 ID_TABLE;
partial void OnID_TABLEChanging(global::System.Int32 value);
partial void OnID_TABLEChanged();
}
答案 0 :(得分:0)
阅读Steve Wilkes提供的链接WCF, Entity Framework & Data Contracts后,从Web服务传递实体对象似乎不太好。所以我必须创建自己的数据传输对象,它是来自实体对象的映射,然后从Web服务传递它。