OData V4的Web Api不能与HasKey一起使用

时间:2014-08-08 06:15:02

标签: c# odata asp.net-web-api2 odata-v4

我使用web api 2.2 for odata v4,以下是模型:

[Table("User")]
public partial class User
{
    public User()
    {
        UserRoles = new HashSet<UserRole>();
    }

    [StringLength(50)]
    public string Id { get; set; }

    [Required]
    [StringLength(50)]
    public string Name { get; set; }

    public virtual ICollection<UserRole> UserRoles { get; set; }
}

[Table("UserRole")]
public partial class UserRole
{
    [Key]
    [Column(Order = 0)]
    [StringLength(50)]
    public string UserId { get; set; }

    [Key]
    [Column(Order = 1)]
    [StringLength(50)]
    public string RoleName { get; set; }

    public virtual User User { get; set; }
}

及以下是WebApiConfig.cs代码:

        ODataConventionModelBuilder builder = new ODataConventionModelBuilder();
        builder.EntitySet<User>("Users");
        builder.EntitySet<UserRole>("UserRoles");            
        config.MapODataServiceRoute("odata", "odata", builder.GetEdmModel());
        config.AddODataQueryFilter();

直到现在,每件事都运作良好。 但是,如果我从UserRole定义中删除[Key]表单。并使用代码:

builder.EntitySet<UserRole>("UserRoles").EntityType.HasKey(r => new { r.UserId, r.RoleName });

当我在User上查询时,我总是得到告诉UserRoles没有键定义的错误。

我上传了源项目文件@ https://cloud.seafile.com/f/bdff340ec3/ 请检查webapiconfig.cs User.cs UserRole.cs和web.config(用于数据库连接字符串)。 当您访问/ odata / Users?$ expand = UserRoles时,您将收到错误

3 个答案:

答案 0 :(得分:2)

只需更改

builder.EntitySet<UserRole>("UserRoles").EntityType.HasKey(r => new { r.UserId, r.RoleName });

EntityTypeConfiguration<UserRole> userRoleType=builder.EntitySet<UserRole>("UserRoles").EntityType;
userRoleType.HasKey(p=>p.UserId);
userRoleType.HasKey(p=>p.RoleName);

答案 1 :(得分:1)

我有同样的问题。这是我现在正在做的事情,没有完成,所以我不知道是否会有其他问题。

在我的模型中,我将UserId更改为Id,因此OData约定将使用它作为键,然后在我使用的dbcontext映射文件中:

public class DbLdapMap : EntityTypeConfiguration<DbLdap>
{
    public DbLdapMap()
    {
        ToTable("LDAP");

        //Primary Key
        HasKey(t => t.Id);

        // Properties
        Property(t => t.Id).HasColumnName("UserId");

    }
}

我真的想在Fluent API中保留所有数据库定义。

答案 2 :(得分:0)

我尝试了你的项目,以及odata元数据&#34; / odata / $ metadata&#34;对我来说似乎很好。

<?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx Version="4.0" xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx">
  <edmx:DataServices>
    <Schema Namespace="WebApplication1.Models.OData" xmlns="http://docs.oasis-open.org/odata/ns/edm">
      <EntityType Name="User">
        <Key>
          <PropertyRef Name="Id" />
        </Key>
        <Property Name="Id" Type="Edm.String" Nullable="false" />
        <Property Name="Name" Type="Edm.String" Nullable="false" />
        <NavigationProperty Name="UserRoles" Type="Collection(WebApplication1.Models.OData.UserRole)" />
      </EntityType>
      <EntityType Name="UserRole">
        <Key>
          <PropertyRef Name="UserId" />
          <PropertyRef Name="RoleName" />
        </Key>
        <Property Name="UserId" Type="Edm.String" Nullable="false" />
        <Property Name="RoleName" Type="Edm.String" Nullable="false" />
        <NavigationProperty Name="User" Type="WebApplication1.Models.OData.User" />
      </EntityType>
    </Schema>
    <Schema Namespace="Default" xmlns="http://docs.oasis-open.org/odata/ns/edm">
      <EntityContainer Name="Container">
        <EntitySet Name="Users" EntityType="WebApplication1.Models.OData.User">
          <NavigationPropertyBinding Path="UserRoles" Target="UserRoles" />
        </EntitySet>
        <EntitySet Name="UserRoles" EntityType="WebApplication1.Models.OData.UserRole">
          <NavigationPropertyBinding Path="User" Target="Users" />
        </EntitySet>
      </EntityContainer>
    </Schema>
  </edmx:DataServices>
</edmx:Edmx>

问题是UserRole没有在数据库模型中定义键,而不是OData EDM模型。

如果删除UserId和RoleName上的Key属性,则DBModelBuilder不知道密钥是什么。

所以你需要在没有[Key]的情况下将以下代码添加到 Database.OnModelCreating

modelBuilder.Entity<UserRole>()
                .HasKey(r => new { r.UserId, r.RoleName });

此外,如果您想支持在结果上应用$ expand ,则需要 在操作上添加EnableQuery属性:

        [EnableQuery]
        public IQueryable<User> GetUsers()
        {
            var db = new Database();
            return db.Users;
        }