- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用带有 .NET 框架 4.5.1 和 EF 6.1 的 WCF 数据服务 (Odata)。我使用代码优先的方法来创建 EF 模型。当我将此 EF 模型 (AddProjectModel.cs) 引用到 WCF OData 服务 (WcfDataService1.svc) 时,它会引发以下错误:
错误:
服务器在处理请求时遇到错误。异常消息是“在数据上下文类型“AddProjectModel”上,有一个顶级 IQueryable 属性“ Assets ”,其元素类型不是实体类型。确保 IQueryable 属性是实体类型或在数据上下文类型上指定 IgnoreProperties 属性以忽略此属性。有关更多详细信息,请参阅服务器日志。异常堆栈跟踪是:
在 System.Data.Services.Providers.ReflectionServiceProvider.PopulateMetadata(ProviderMetadataCacheItem metadataCacheItem) 在 System.Data.Services.Providers.BaseServiceProvider.LoadMetadata(Boolean skipServiceOperations) 在 System.Data.Services.DataService 1.CreateInternalProvider(Object dataSourceInstance) at System.Data.Services.DataService
1.在 System.Data.Services.DataService 1.CreateProvider() at System.Data.Services.DataService
处创建MetadataAndQueryProviders(IDataServiceMetadataProvider& metadataProviderInstance, IDataServiceQueryProvider& queryProviderInstance, Object& dataSourceInstance, Boolean& isInternallyCreatedProvider) 1.HandleRequest() 在 System.Data.Services.DataService`1.ProcessRequestForMessage(Stream messageBody) 在 SyncInvokeProcessRequestForMessage(Object , Object[] , Object[] ) 在 System.ServiceModel.Dispatcher.SyncMethodInvoker.Invoke(Object instance, Object[ ] 在 System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin(MessageRpc& rpc) 在 System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage5(MessageRpc& rpc) 在 System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage41(MessageRpc& rpc) 的输入,Object[]& 输出) ) 在 System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage4(MessageRpc& rpc) 在 System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage31(MessageRpc& rpc) 在 System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage3(MessageRpc& rpc) 在 System.ServiceModel.Dispatcher。 System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage11 处的 ImmutableDispatchRuntime.ProcessMessage2(MessageRpc& rpc)( MessageRpc& rpc) 在 System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage1(MessageRpc& rpc) 在 System.ServiceModel.Dispatcher.MessageRpc.Process(Boolean isOperationContextSet)
这是我的 WCF 数据服务:WcfDataService1.svc
namespace AddProjectService
{
public class WcfDataService1 : DataService<AddProjectModel>
{
// This method is called only once to initialize service-wide policies.
public static void InitializeService(DataServiceConfiguration config)
{
// TODO: set rules to indicate which entity sets and service operations are visible,
updatable, etc.
// Examples:
config.SetEntitySetAccessRule("*", EntitySetRights.AllRead);
config.SetServiceOperationAccessRule("*", ServiceOperationRights.All);
config.DataServiceBehavior.MaxProtocolVersion = DataServiceProtocolVersion.V3;
}
}
}
public partial class AddProjectModel : DbContext
{
public AddProjectModel()
: base("name=AddProjectModel")
{
}
public virtual DbSet<Asset> Assets { get; set; }
public virtual DbSet<Project> Projects { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Configurations.Add(new AssetMap());
modelBuilder.Configurations.Add(new ProjectMap());
}
}
public class AssetMap : EntityTypeConfiguration<Asset>
{
public AssetMap()
{
this.Property(a => a.AssetId).HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
this.HasMany(a => a.Projects).WithRequired(p => p.Asset).HasForeignKey(p => p.AssetId);
//table & column mappings
this.ToTable("TBLASSET");
this.Property(a => a.AssetId).HasColumnName("ASSETID");
this.Property(a => a.AssetLevelId).HasColumnName("ASSETLEVELID");
this.Property(a => a.AssetNumber).HasColumnName("ASSETNUMBER");
this.Property(a => a.Name).HasColumnName("NAME");
this.Property(a => a.AssetTypeId).HasColumnName("ASSETTYPEID");
}
}
public class ProjectMap : EntityTypeConfiguration<Project>
{
public ProjectMap()
{
this.Property(p => p.ProjectId).HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
this.HasMany(p => p.SchedulePhases).WithRequired(sp => sp.Project).HasForeignKey(sp =>
sp.ProjectId);
//table & column mappings
this.ToTable("TBLPROJECT");
this.Property(p => p.ProjectId).HasColumnName("PROJECTID");
this.Property(p => p.AssetId).HasColumnName("ASSETID");
this.Property(p => p.CapitalCategoryId).HasColumnName("CAPITALCATEGORYID");
this.Property(p => p.Comments).HasColumnName("COMMENTS");
this.Property(p => p.DesignationId).HasColumnName("DESIGNATIONID");
this.Property(p => p.DispositionId).HasColumnName("DISPOSITIONID");
this.Property(p => p.FMSNumber).HasColumnName("FMSNUMBER");
this.Property(p => p.FundingSourceId).HasColumnName("FUNDINGSOURCEID");
this.Property(p => p.ImplementerId).HasColumnName("IMPLEMENTERID");
this.Property(p => p.IsApproved).HasColumnName("ISAPPROVED");
this.Property(p => p.IsDeferred).HasColumnName("ISDEFERRED");
this.Property(p => p.IsLongTermLease).HasColumnName("ISLONGTERMLEASE");
this.Property(p => p.IsRollover).HasColumnName("ISROLLOVER");
this.Property(p => p.IsSidewalkBridge).HasColumnName("ISSIDEWALKBRIDGE");
this.Property(p => p.JobDescription).HasColumnName("JOBDESCRIPTION");
this.Property(p => p.JobType).HasColumnName("JOBTYPE");
this.Property(p => p.OrganizationId).HasColumnName("ORGANIZATIONID");
this.Property(p => p.ProgramCategoryId).HasColumnName("PROGRAMCATEGORYID");
this.Property(p => p.DsfId).HasColumnName("DSFID");
this.Property(p => p.StatusId).HasColumnName("STATUSID");
this.Map<DomainObjectModel.ObjectModel.Project.ProjectCIP>(m => m.Requires("PROJECTTYPEID").HasValue(15))
.Map<DomainObjectModel.ObjectModel.Project.ProjectCapacity>(m => m.Requires("PROJECTTYPEID").HasValue(2));
}
}
public class Asset
{
public Asset()
{
Projects = new HashSet<Project>();
}
[Key]
public decimal AssetId { get; set; }
[StringLength(20)]
public string AssetNumber { get; set; }
[StringLength(100)]
public string Name { get; set; }
public decimal? AssetLevelId { get; set; }
public decimal? AssetTypeId { get; set; }
public virtual ICollection<Project> Projects { get; set; }
}
public class Project
{
public Project()
{
}
[Key]
public decimal ProjectId { get; set; }
public decimal AssetId { get; set; }
public decimal CapitalCategoryId { get; set; }
//public decimal ProjectTypeId { get; set; }
public decimal ProgramCategoryId { get; set; }
[StringLength(1024)]
public string Comments { get; set; }
public decimal ImplementerId { get; set; }
public decimal StatusId { get; set; }
public decimal DsfId { get; set; }
[StringLength(20)]
public string FMSNumber { get; set; }
[StringLength(1024)]
public string JobDescription { get; set; }
[StringLength(2)]
public string JobType { get; set; }
public decimal OrganizationId { get; set; }
[Required][StringLength(1)]
public string IsRollover { get; set; }
[Required][StringLength(1)]
public string IsDeferred { get; set; }
[Required][StringLength(1)]
public string IsApproved { get; set; }
[StringLength(1)]
public string IsSidewalkBridge { get; set; }
public decimal FundingSourceId { get; set; }
public decimal? DesignationId { get; set; }
public decimal? DispositionId { get; set; }
[Required][StringLength(1)]
public string IsLongTermLease { get; set; }
public virtual Asset Asset { get; set; }
}
<?xml version="1.0" encoding="utf-8" ?>
<m:error xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
<m:code />
<m:message xml:lang="en-US">An error occurred while processing this request.</m:message>
<m:innererror>
<m:message>Operation could destabilize the runtime.</m:message>
<m:type>System.Security.VerificationException</m:type>
<m:stacktrace>at queryable_reader(Object ) at System.Data.Services.Providers.ReflectionServiceProvider.GetQueryRootForResourceSet(ResourceSet container) at System.Data.Services.Providers.ReflectionDataServiceProvider.GetQueryRootForResourceSet(ResourceSet resourceSet) at System.Data.Services.Providers.DataServiceProviderWrapper.GetQueryRootForResourceSet(ResourceSetWrapper resourceSet) at System.Data.Services.RequestUriProcessor.ComposeExpressionForEntitySet(SegmentInfo segment, IDataService service, Boolean isLastSegment, Boolean checkRights) at System.Data.Services.RequestUriProcessor.ComposeExpressionForSegments(IList`1 segments, IDataService service, Boolean isCrossReferencingUri) at System.Data.Services.RequestUriProcessor.ProcessRequestUri(Uri absoluteRequestUri, IDataService service, Boolean internalQuery) at System.Data.Services.DataService`1.ProcessIncomingRequestUri() at System.Data.Services.DataService`1.HandleRequest()</m:stacktrace>
</m:innererror>
</m:error>
最佳答案
要将 WCF DataService 与 EF6 一起使用,还需要做一些额外的工作。详情请查看以下两篇博文:
Using WCF Data Services 5.6.0 with Entity Framework 6+
WCF Data Services Entity Framework Provider is updated with WCF Data Service 5.6.2
一般来说,您需要以下两个步骤:
关于entity-framework - WCF OData 服务和 EF 6 问题 - 无法使用 Odata 服务公开实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25873290/
EF POCO 和 EF Code First 有什么区别? 如果我一开始只使用 POCO,我可以将 EF 与它们一起使用吗? 最佳答案 如果您首先使用 EF 代码,您将拥有 POCO 对象,并且数据
EF POCO 和 EF Code First 有什么区别? 如果我一开始只使用 POCO,我可以将 EF 与它们一起使用吗? 最佳答案 如果您首先使用 EF 代码,您将拥有 POCO 对象,并且数据
我有一个基于 .NET 4.8 和 EF 6.4.4 的项目。我们正在逐步迁移到 .Net Core,但在此过程中我可以创建一个 .NET Core 数据上下文类 EF Core 并将两者指向相同的实
我有以下 Entity Framework 5 代码第一类 public class Airplane { public int Id { get; set; } public int
我正在尝试使用 Entity Framework Core 对现有数据库进行逆向工程.我试着按照指示from Microsoft但我遇到了错误: Unable to find provider ass
当数据库不是由 EF 代码首先创建时,有没有办法检查 DbContext 是否与数据库匹配? 我正在寻找与 Database.CompatibleWithModel 类似的功能但没有元数据。 最佳答案
目前,我正在重构我的上下文方法的测试,以不再需要真正的数据库。我使用 Ef Core。 所以我通读了 Microsoft 文档如何测试上下文方法。我首先找到了 EF6 测试的文档,然后阅读了 EfCo
我正在使用 EF 6 Database.SqlQuery 语句来执行存储过程,并实现错误和事务处理,打开和关闭事务(处理多个记录,如果一个记录有错误,仅回滚此,并提交其他任何内容无错误完成)。 Lis
我首先使用 EF 数据库,因为我喜欢在 SQL Management Studio 中设计我的数据库,坦率地说,让 Visual Studio 直接从数据库创建所有实体非常容易,而无需执行任何代码。
我的项目中有几个迁移文件,由于我对上次迁移进行了手动修改,所以我不想使用“程序包管理器控制台”重新生成它。我只需要添加 1 列。所以在之前的迁移中手动添加了这个(我可以这样做,因为还没有人升级过)。
原文:https://bit.ly/2umidlb 作者:jon p smith 翻译:王亮 声明:我翻译技术文章不是逐句翻译的,而是根据我自己的理解来表述的。其中可能会去除一些本人实在不知道如何组
我们想开始一个新项目,我们决定从一开始就在一些表中使用 Columnstore 索引和聚簇索引,我们如何使用 Code First EF Core 3.1 做到这一点? 最佳答案 您应该将主键更改为非
我在 Entity Framework 6.0 上。这是一个开发问题,而不是生产问题。 我想我有一个相互矛盾的策略。 目前,我设置了 DropCreateDatabaseIfModelChanges
我在 VS 2012 RTM 上,使用 EF 5。我在做代码优先,但由于我只是在开发中,所以试图忽略代码迁移。为了避免它们,我有这一套 Database.SetInitializer(new Drop
我有复杂的审计字段类型 我的复杂类型: [ComplexType] public class AuditData { [Column("CreatorUserId")] public
我已经阅读了很多关于如何在关系中指定外键名称的帖子,没有遇到任何问题。不过,我想知道的是,有没有办法更改主键和关系的命名方式? 例如,您有一个以 UserId 作为主键的 User 表。 EF 代码第
我刚刚安装了新的Entity Framework 4.1 NuGet包,因此根据NuGet指令和this article of Scott Hanselman替换了EFCodeFirst包。 现在,想
我的应用程序基于 .NET 4.0 和 EF 4。我现在正在考虑升级到最新版本。 是否有任何可能对我的申请产生不利影响的重大变化或行为差异? 升级路径有多简单?升级到 EF 5 是否需要任何代码更改或
假设您必须使用 EF Code First 和 POCO 类开发支持多种语言的网站,您将如何对 POCO 类进行建模以支持这种情况? 通过多语言支持,我的意思不仅是拥有例如在一些资源文件中为您的 UI
我首先使用 EF 4.1 代码。鉴于以下类片段: public class Doctor { public virtual ICollection Hospitals { get; set;
我是一名优秀的程序员,十分优秀!