1

我为我的模型使用实体框架(edmx 文件),并且我正在使用 WCF 来访问我的模型。当尝试返回实体数据模型(示例表对象)的列表时,我得到一个错误:

服务器没有提供有意义的回复;这可能是由于合同不匹配、会话过早关闭或内部服务器错误造成的。

这是我的 WCF 代码。IService.cs:

[ServiceContract(CallbackContract = typeof(IPesananCallBack), SessionMode = SessionMode.Required)]
public interface IPelayanWebService
{
   [OperationContract]
   List<table> GetAllTables();
}

服务.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 生成数据合同吗?

更新: 这是从实体框架生成的代码:

[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();
}
4

1 回答 1

0

在阅读了 Steve Wilkes, WCF, Entity Framework & Data Contracts提供的链接之后,从 Web 服务传递实体对象看起来并不好。所以我必须创建自己的数据传输对象,它是实体对象的映射,然后从 Web 服务传递它。

于 2012-12-08T14:28:17.160 回答