本文整理汇总了C#中System.Web.Http.OData.Builder.ODataConventionModelBuilder.AddEntitySet方法的典型用法代码示例。如果您正苦于以下问题:C# ODataConventionModelBuilder.AddEntitySet方法的具体用法?C# ODataConventionModelBuilder.AddEntitySet怎么用?C# ODataConventionModelBuilder.AddEntitySet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Web.Http.OData.Builder.ODataConventionModelBuilder
的用法示例。
在下文中一共展示了ODataConventionModelBuilder.AddEntitySet方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetEdmModel
internal static IEdmModel GetEdmModel(this ApiActionDescriptor actionDescriptor, Type entityClrType)
{
if (actionDescriptor == null)
{
throw Error.ArgumentNull("actionDescriptor");
}
if (entityClrType == null)
{
throw Error.ArgumentNull("entityClrType");
}
// save the EdmModel to the action descriptor
return actionDescriptor.Properties.GetOrAdd(EdmModelKey + entityClrType.FullName, _ =>
{
// It's safe to create HttpConfiguration, since it's used as an assembly Resolver.
//ODataConventionModelBuilder builder = new ODataConventionModelBuilder(new HttpConfiguration(), isQueryCompositionMode: true);
ODataConventionModelBuilder builder = new ODataConventionModelBuilder(new HttpConfiguration());
EntityTypeConfiguration entityTypeConfiguration = builder.AddEntity(entityClrType);
builder.AddEntitySet(entityClrType.Name, entityTypeConfiguration);
IEdmModel edmModel = builder.GetEdmModel();
Contract.Assert(edmModel != null);
return edmModel;
}) as IEdmModel;
}
示例2: GetEdmModel
internal static IEdmModel GetEdmModel(this HttpActionDescriptor actionDescriptor, Type entityClrType)
{
if (actionDescriptor == null)
{
throw Error.ArgumentNull("actionDescriptor");
}
if (entityClrType == null)
{
throw Error.ArgumentNull("entityClrType");
}
// save the EdmModel to the action descriptor
return actionDescriptor.Properties.GetOrAdd(EdmModelKey + entityClrType.FullName, _ =>
{
ODataConventionModelBuilder builder = new ODataConventionModelBuilder();
IEntityTypeConfiguration entityTypeConfiguration = builder.AddEntity(entityClrType);
builder.AddEntitySet(entityClrType.Name, entityTypeConfiguration);
return builder.GetEdmModel();
}) as IEdmModel;
}
示例3: GetEdmModel
internal static IEdmModel GetEdmModel(this HttpActionDescriptor actionDescriptor, Type entityClrType)
{
if (actionDescriptor == null)
{
throw Error.ArgumentNull("actionDescriptor");
}
if (entityClrType == null)
{
throw Error.ArgumentNull("entityClrType");
}
// save the EdmModel to the action descriptor
return actionDescriptor.Properties.GetOrAdd(ModelKeyPrefix + entityClrType.FullName, _ =>
{
ODataConventionModelBuilder builder =
new ODataConventionModelBuilder(actionDescriptor.Configuration, isQueryCompositionMode: true);
EntityTypeConfiguration entityTypeConfiguration = builder.AddEntity(entityClrType);
builder.AddEntitySet(entityClrType.Name, entityTypeConfiguration);
IEdmModel edmModel = builder.GetEdmModel();
Contract.Assert(edmModel != null);
return edmModel;
}) as IEdmModel;
}
示例4: ApplyTo_Picks_DefaultOrder
public void ApplyTo_Picks_DefaultOrder(string oDataQuery, Type elementType, string expectedExpression)
{
IQueryable query = Array.CreateInstance(elementType, 0).AsQueryable();
var modelBuilder = new ODataConventionModelBuilder();
modelBuilder.AddEntitySet("entityset", modelBuilder.AddEntity(elementType));
var model = modelBuilder.GetEdmModel();
var message = new HttpRequestMessage(
HttpMethod.Get,
new Uri("http://server/service/entityset?" + oDataQuery)
);
var options = new ODataQueryOptions(new ODataQueryContext(model, elementType, "entityset"), message);
IQueryable finalQuery = options.ApplyTo(query);
string queryExpression = finalQuery.Expression.ToString();
queryExpression = queryExpression.Substring(queryExpression.IndexOf("OrderBy"));
Assert.Equal(queryExpression, expectedExpression);
}
示例5: Register
//.........这里部分代码省略.........
//// Add Default API Service routes
//// Instead of being able to use one default route that gets action from http method, have to
//// have a default route for each method so that other actions do not match the default (i.e. DataViews).
//// Also, this will make controller routes case-insensitive (vs the odata routing)
config.Routes.MapHttpRoute(
name: "DefaultApiGetById",
routeTemplate: "api/{controller}/{id}",
defaults: new
{
action = "GetById"
},
constraints: new
{
httpMethod = new HttpMethodConstraint( new string[] { "GET", "OPTIONS" } ),
controllerName = new Rock.Rest.Constraints.ValidControllerNameConstraint()
} );
config.Routes.MapHttpRoute(
name: "DefaultApiGetFunction",
routeTemplate: "api/{controller}({key})",
defaults: new
{
action = "GET"
},
constraints: new
{
httpMethod = new HttpMethodConstraint( new string[] { "GET", "OPTIONS" } ),
controllerName = new Rock.Rest.Constraints.ValidControllerNameConstraint()
} );
config.Routes.MapHttpRoute(
name: "DefaultApiGetList",
routeTemplate: "api/{controller}",
defaults: new
{
action = "GET"
},
constraints: new
{
httpMethod = new HttpMethodConstraint( new string[] { "GET", "OPTIONS" } ),
controllerName = new Rock.Rest.Constraints.ValidControllerNameConstraint()
} );
config.Routes.MapHttpRoute(
name: "DefaultApiPut",
routeTemplate: "api/{controller}/{id}",
defaults: new
{
action = "PUT",
id = System.Web.Http.RouteParameter.Optional
},
constraints: new
{
httpMethod = new HttpMethodConstraint( new string[] { "PUT", "OPTIONS" } ),
controllerName = new Rock.Rest.Constraints.ValidControllerNameConstraint()
} );
config.Routes.MapHttpRoute(
name: "DefaultApiPost",
routeTemplate: "api/{controller}/{id}",
defaults: new
{
action = "POST",
id = System.Web.Http.RouteParameter.Optional,
controllerName = new Rock.Rest.Constraints.ValidControllerNameConstraint()
},
constraints: new
{
httpMethod = new HttpMethodConstraint( new string[] { "POST", "OPTIONS" } )
} );
config.Routes.MapHttpRoute(
name: "DefaultApiDelete",
routeTemplate: "api/{controller}/{id}",
defaults: new
{
action = "DELETE",
id = System.Web.Http.RouteParameter.Optional
},
constraints: new
{
httpMethod = new HttpMethodConstraint( new string[] { "DELETE", "OPTIONS" } ),
controllerName = new Rock.Rest.Constraints.ValidControllerNameConstraint()
} );
// build OData model and create service route (mainly for metadata)
ODataConventionModelBuilder builder = new ODataConventionModelBuilder();
var entityTypeList = Reflection.FindTypes( typeof( Rock.Data.IEntity ) )
.Where( a => !a.Value.IsAbstract && ( a.Value.GetCustomAttribute<NotMappedAttribute>() == null ) && (a.Value.GetCustomAttribute<DataContractAttribute>() != null) )
.OrderBy( a => a.Key ).Select( a => a.Value );
foreach ( var entityType in entityTypeList )
{
var entityTypeConfig = builder.AddEntity( entityType );
var entitySetConfig = builder.AddEntitySet( entityType.Name.Pluralize(), entityTypeConfig );
}
config.Routes.MapODataServiceRoute( "api", "api", builder.GetEdmModel() );
}
示例6: GetEdmModel
public static IEdmModel GetEdmModel(HttpConfiguration configuration)
{
ODataConventionModelBuilder builder = new ODataConventionModelBuilder(configuration);
foreach (var type in Creator.EntityTypes)
{
var entity = builder.AddEntity(type);
builder.AddEntitySet(type.Name, entity);
}
return builder.GetEdmModel();
}
示例7: Register
//.........这里部分代码省略.........
httpMethod = new HttpMethodConstraint( new string[] { "GET", "OPTIONS" } ),
controllerName = new Rock.Rest.Constraints.ValidControllerNameConstraint()
} );
config.Routes.MapHttpRoute(
name: "DefaultApiGetList",
routeTemplate: "api/{controller}",
defaults: new
{
action = "GET"
},
constraints: new
{
httpMethod = new HttpMethodConstraint( new string[] { "GET", "OPTIONS" } ),
controllerName = new Rock.Rest.Constraints.ValidControllerNameConstraint()
} );
config.Routes.MapHttpRoute(
name: "DefaultApiPut",
routeTemplate: "api/{controller}/{id}",
defaults: new
{
action = "PUT",
id = System.Web.Http.RouteParameter.Optional
},
constraints: new
{
httpMethod = new HttpMethodConstraint( new string[] { "PUT", "OPTIONS" } ),
controllerName = new Rock.Rest.Constraints.ValidControllerNameConstraint()
} );
config.Routes.MapHttpRoute(
name: "DefaultApiPatch",
routeTemplate: "api/{controller}/{id}",
defaults: new
{
action = "PATCH",
id = System.Web.Http.RouteParameter.Optional
},
constraints: new
{
httpMethod = new HttpMethodConstraint( new string[] { "PATCH", "OPTIONS" } ),
controllerName = new Rock.Rest.Constraints.ValidControllerNameConstraint()
} );
config.Routes.MapHttpRoute(
name: "DefaultApiPost",
routeTemplate: "api/{controller}/{id}",
defaults: new
{
action = "POST",
id = System.Web.Http.RouteParameter.Optional,
controllerName = new Rock.Rest.Constraints.ValidControllerNameConstraint()
},
constraints: new
{
httpMethod = new HttpMethodConstraint( new string[] { "POST", "OPTIONS" } )
} );
config.Routes.MapHttpRoute(
name: "DefaultApiDelete",
routeTemplate: "api/{controller}/{id}",
defaults: new
{
action = "DELETE",
id = System.Web.Http.RouteParameter.Optional
},
constraints: new
{
httpMethod = new HttpMethodConstraint( new string[] { "DELETE", "OPTIONS" } ),
controllerName = new Rock.Rest.Constraints.ValidControllerNameConstraint()
} );
// build OData model and create service route (mainly for metadata)
ODataConventionModelBuilder builder = new ODataConventionModelBuilder();
var entityTypeList = Reflection.FindTypes( typeof( Rock.Data.IEntity ) )
.Where( a => !a.Value.IsAbstract && ( a.Value.GetCustomAttribute<NotMappedAttribute>() == null ) && ( a.Value.GetCustomAttribute<DataContractAttribute>() != null ) )
.OrderBy( a => a.Key ).Select( a => a.Value );
foreach ( var entityType in entityTypeList )
{
var entityTypeConfig = builder.AddEntity( entityType );
var tableAttribute = entityType.GetCustomAttribute<TableAttribute>();
string name;
if ( tableAttribute != null )
{
name = tableAttribute.Name.Pluralize();
}
else
{
name = entityType.Name.Pluralize();
}
var entitySetConfig = builder.AddEntitySet( name, entityTypeConfig );
}
config.Routes.MapODataServiceRoute( "api", "api", builder.GetEdmModel() );
}