我有一个从Web API模板(包括凭据)创建的OData项目.
我有一个ApplicationUser:IdentityUser类.
我有一个TournamentContext:IdentityDbContext类.
我有带有[RoutePrefix(“ api / Account”)]属性的模板随附的默认AccountController.
在WebApiConfig.cs中
对于Web API模板的默认路由,我有
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new {id = RouteParameter.Optional});
对于OData支持,我添加了:
config.Routes.MapODataRoute("odata", "odata", GetModel(),
new DefaultODataBatchHandler(GlobalConfiguration.DefaultServer));
和
private static IEdmModel GetModel()
{
ODataConventionModelBuilder builder = new ODataConventionModelBuilder();
builder.EntitySet<Tournament>("Tournaments");
return builder.GetEdmModel();
}
现在,
我想通过OData API公开帐户/用户管理.
我该如何实现?
谢谢,
贾尼夫·拉特森(Janiv Ratson).
解决方法:
您可以创建ODataController来使用脚手架来管理用户身份:
1)右键点击Controllers文件夹,添加->控制器…
2)选择“带有动作的Web API 2 OData控制器,实体框架”
3)在对话框中,为应用程序用户选择生成的模型类-默认情况下为ApplicationUser(WebApplication1.Models)-以及适当的数据上下文
4)生成完成后,应替换自动添加到数据上下文中的DbSet属性声明
public System.Data.Entity.DbSet<WebApplication1.Models.ApplicationUser> ApplicationUsers { get; set; }
与方法声明
public DbSet<ApplicationUser> GetApplicationUsers()
{
return (DbSet<ApplicationUser>) Users;
}
(因为您的数据上下文是从具有IDbSet Users属性的IdentityDbContext继承的).所以有错误
Multiple object sets per type are not supported. The object sets
‘ApplicationUsers’ and ‘Users’ can both contain instances of type
‘WebApplication1.Models.ApplicationUser’
除非您进行更换.
5)最后-您应该将生成的控制器代码“ db.ApplicationUsers”替换为“ db.GetApplicationUsers()”.