我有这样的EF6 Code First模型设计。从<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /portal/
# Removes index.php from ExpressionEngine URLs
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteCond %{REQUEST_URI} !/system/.* [NC]
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]
# Directs all EE web requests through the site index file
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /portal/index.php?/$1 [L]
</IfModule>
课程中了解谁是家长(ParentA
或ParentB
)的最佳方法是什么。谢谢!
Another
答案 0 :(得分:0)
在上述设置中,EF将在父母和孩子之间建立一对多的关系。但是,如果ParentA和ParentB可以引用同一个子进程,您可能希望将其配置为多对多。您可以在EF文档中找到如何执行此操作:http://www.entityframeworktutorial.net/code-first/configure-many-to-many-relationship-in-code-first.aspx
关于如何找出谁引用孩子的问题,您可以制定一个简单的查询,例如:
context.ParentAs.Where(p => p.ChildId == id).Any()
这将告诉您是否有一个引用您孩子的ParentA。
如果你想让它更优雅,你可以让两个父母相互联系:
class Parent{ /* ... */ }
class ParentA : Parent{ /* ... */ }
class ParentB : Parent { /* ... */ }
然后从Child引用Parent而不是相反:
class Child
{
public Parent Parent{ get; set; }
// ...
}