- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个简单的观点
我需要使用 CustomerID 在 CustomerOrderView 和 CustomerView 之间创建关联。
我是这样添加协会的:
不,这似乎是给我带来问题的地方。
我双击关联行并尝试添加一个新的引用约束。
如果我选择 CustomerOrderView 作为委托(delegate)人,我会得到以下信息。
这行不通,因为我正在尝试让两个 View 中的两个 CustomerID 进行连接。
第 2 轮...所以这次我将 Principal 更改为 CustomerView,现在我可以看到 CustomerID 都已连接。像这样。
但是如果我尝试保存实体文件,我将收到以下错误。
“错误 111:Principal Role CustomerOrderView 引用的属性必须与 Relationship TestModel.CustomerOrderViewCustomerView 的关系约束中 Principal Role 引用的 EntityType TestModel.CustomerOrderView 的键完全相同。确保在主要角色。”
和
“错误 5 运行转换:多重性在关系‘CustomerOrderViewCustomerView’中的角色‘CustomerView’中无效。主体角色多重性的有效值为‘0..1’或‘1’。”
和
“错误 6 运行转换:多重性在关系‘CustomerOrderViewCustomerView’中的角色‘CustomerOrderView’中无效。因为从属角色属性不是关键属性,所以从属角色的多重性上限必须是 *。”
那么如何在 Entity Framework 中将 View 连接在一起?
这里是 edmx 以获得更多帮助。
<?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx">
<!-- EF Runtime content -->
<edmx:Runtime>
<!-- SSDL content -->
<edmx:StorageModels>
<Schema Namespace="TestModel.Store" Provider="System.Data.SqlClient" ProviderManifestToken="2012" Alias="Self" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl">
<!--Errors Found During Generation:
warning 6002: The table/view 'Test.dbo.CustomerOrderView' does not have a primary key defined. The key has been inferred and the definition was created as a read-only table/view.-->
<EntityType Name="CustomerOrderView">
<Key>
<PropertyRef Name="CustomerOrderID" />
</Key>
<Property Name="CustomerOrderID" Type="numeric" Precision="9" Scale="0" Nullable="false" />
<Property Name="OrderStatus" Type="char" MaxLength="1" />
<Property Name="CustomerID" Type="numeric" Precision="6" Scale="0" />
</EntityType>
<!--Errors Found During Generation:
warning 6002: The table/view 'Test.dbo.CustomerView' does not have a primary key defined. The key has been inferred and the definition was created as a read-only table/view.-->
<EntityType Name="CustomerView">
<Key>
<PropertyRef Name="CustomerID" />
</Key>
<Property Name="CustomerID" Type="numeric" Precision="6" Scale="0" Nullable="false" />
<Property Name="CustomerName" Type="varchar" MaxLength="30" />
</EntityType>
<EntityContainer Name="TestModelStoreContainer">
<EntitySet Name="CustomerOrderView" EntityType="Self.CustomerOrderView" store:Type="Views" store:Schema="dbo">
<DefiningQuery>SELECT
[CustomerOrderView].[CustomerOrderID] AS [CustomerOrderID],
[CustomerOrderView].[OrderStatus] AS [OrderStatus],
[CustomerOrderView].[CustomerID] AS [CustomerID]
FROM [dbo].[CustomerOrderView] AS [CustomerOrderView]</DefiningQuery>
</EntitySet>
<EntitySet Name="CustomerView" EntityType="Self.CustomerView" store:Type="Views" store:Schema="dbo">
<DefiningQuery>SELECT
[CustomerView].[CustomerID] AS [CustomerID],
[CustomerView].[CustomerName] AS [CustomerName]
FROM [dbo].[CustomerView] AS [CustomerView]</DefiningQuery>
</EntitySet>
</EntityContainer>
</Schema></edmx:StorageModels>
<!-- CSDL content -->
<edmx:ConceptualModels>
<Schema Namespace="TestModel" Alias="Self" annotation:UseStrongSpatialTypes="false" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
<EntityContainer Name="TestEntities" annotation:LazyLoadingEnabled="true" >
<EntitySet Name="CustomerOrderViews" EntityType="TestModel.CustomerOrderView" />
<EntitySet Name="CustomerViews" EntityType="TestModel.CustomerView" />
<AssociationSet Name="CustomerOrderViewCustomerView" Association="TestModel.CustomerOrderViewCustomerView">
<End Role="CustomerOrderView" EntitySet="CustomerOrderViews" />
<End Role="CustomerView" EntitySet="CustomerViews" />
</AssociationSet>
</EntityContainer>
<EntityType Name="CustomerOrderView">
<Key>
<PropertyRef Name="CustomerOrderID" />
</Key>
<Property Name="CustomerOrderID" Type="Decimal" Nullable="false" Precision="9" Scale="0" />
<Property Name="OrderStatus" Type="String" MaxLength="1" FixedLength="true" Unicode="false" />
<Property Name="CustomerID" Type="Decimal" Precision="6" Scale="0" />
<NavigationProperty Name="CustomerViews" Relationship="TestModel.CustomerOrderViewCustomerView" FromRole="CustomerOrderView" ToRole="CustomerView" />
</EntityType>
<EntityType Name="CustomerView">
<Key>
<PropertyRef Name="CustomerID" />
</Key>
<Property Name="CustomerID" Type="Decimal" Nullable="false" Precision="6" Scale="0" />
<Property Name="CustomerName" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
<NavigationProperty Name="CustomerOrderView" Relationship="TestModel.CustomerOrderViewCustomerView" FromRole="CustomerView" ToRole="CustomerOrderView" />
</EntityType>
<Association Name="CustomerOrderViewCustomerView">
<End Type="TestModel.CustomerOrderView" Role="CustomerOrderView" Multiplicity="1" />
<End Type="TestModel.CustomerView" Role="CustomerView" Multiplicity="*" />
<ReferentialConstraint>
<Principal Role="CustomerView">
<PropertyRef Name="CustomerID" />
</Principal>
<Dependent Role="CustomerOrderView">
<PropertyRef Name="CustomerID" />
</Dependent>
</ReferentialConstraint>
</Association>
</Schema>
</edmx:ConceptualModels>
<!-- C-S mapping content -->
<edmx:Mappings>
<Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
<EntityContainerMapping StorageEntityContainer="TestModelStoreContainer" CdmEntityContainer="TestEntities" >
<EntitySetMapping Name="CustomerOrderViews">
<EntityTypeMapping TypeName="TestModel.CustomerOrderView">
<MappingFragment StoreEntitySet="CustomerOrderView">
<ScalarProperty Name="CustomerID" ColumnName="CustomerID" />
<ScalarProperty Name="OrderStatus" ColumnName="OrderStatus" />
<ScalarProperty Name="CustomerOrderID" ColumnName="CustomerOrderID" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="CustomerViews">
<EntityTypeMapping TypeName="TestModel.CustomerView">
<MappingFragment StoreEntitySet="CustomerView">
<ScalarProperty Name="CustomerName" ColumnName="CustomerName" />
<ScalarProperty Name="CustomerID" ColumnName="CustomerID" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
</EntityContainerMapping>
</Mapping>
</edmx:Mappings>
</edmx:Runtime>
<!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
<Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
<Connection>
<DesignerInfoPropertySet>
<DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
</DesignerInfoPropertySet>
</Connection>
<Options>
<DesignerInfoPropertySet>
<DesignerProperty Name="ValidateOnBuild" Value="true" />
<DesignerProperty Name="EnablePluralization" Value="true" />
<DesignerProperty Name="IncludeForeignKeysInModel" Value="True" />
<DesignerProperty Name="UseLegacyProvider" Value="false" />
<DesignerProperty Name="CodeGenerationStrategy" Value="None" />
</DesignerInfoPropertySet>
</Options>
<!-- Diagram content (shape and connector positions) -->
<Diagrams></Diagrams>
</Designer>
</edmx:Edmx>
编辑——更多示例
我已将 1 换成许多,这样“1”个 CustomerView 就可以有“多个”CustomerOrderView。
现在我得到以下错误:
“错误 4 错误 3031:从第 90 行开始的映射片段出现问题:表 CustomerOrderView 中的不可为 null 的列 CustomerOrderView.CustomerID 映射到可为 null 的实体属性。” - 这不是真的。 CustomerOrderView.CustomerID 可以为空,但 CustomerView.CustomerID 不可为空。
和
“错误 5 运行转换:多重性在关系‘CustomerViewCustomerOrderView’中的角色‘CustomerView’中无效。因为从属角色中的所有属性都可以为空,所以主体角色的多重性必须为‘0..1’。”
然后,我将 CustomerOrderView.CustomerID 更改为不可为 null 的,尽管实际上可能存在尚未分配给 CustomerID 的订单。但在那次更改之后,我在运行时收到以下错误。
“无法将‘CustomerOrderView’上的‘CustomerID’属性设置为‘空’值。您必须将此属性设置为‘System.Decimal’类型的非空值。”
所以我进入了 SQL 中的 CustomerOrderView 并添加了一个 ISNULL(CustomerID,-1)。
现在它起作用了,但这就是我现在想要的。 CustomerOrderView 应该可以为 Nullable。
我觉得我做错了什么或设置了错误。
编辑——修复。
基本上我需要使用 0..1 到多的关系,其中 0..1 在 CustomerOrderView 端,许多在 CustomerView 端。接下来,我告诉它不要添加外键属性,并以 CustomerView 作为 Principal 和 CustomerOrderView 作为 Dependent 手动添加它。
最佳答案
我认为问题在于您的关系(一对多关系)。我认为一侧应该是客户 View 表。然后就好了。
已更新
发现问题我觉得这两个属性互不符合要求。这就是错误弹出的原因。检查 CustomerView.CustomerID
可为 null 的属性是否为真。如果是,则变为 false,如下所示
关于c# - Entity Framework View 关联不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23318929/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!