定义外键有什么好处

what are the advantages of defining a foreign key(定义外键有什么好处)
本文介绍了定义外键有什么好处的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在使用处理关系的 MVC 框架时定义外键有什么好处?

What is the advantage of defining a foreign key when working with an MVC framework that handles the relation?

我正在使用一个带有框架的关系数据库,该框架允许带有关系的模型定义.因为外键是通过模型定义的,所以外键似乎是多余的.在管理开发中的应用程序的数据库时,编辑/删除使用外键的表很麻烦.

I'm using a relational database with a framework that allows model definitions with relations. Because the foreign keys are defined through the models, it seems like foreign keys are redundant. When it comes to managing the database of an application in development, editing/deleting tables that are using foreign keys is a hassle.

完全放弃使用外键是否有任何好处?

Is there any advantage to using foreign keys that I'm forgoing by dropping the use of them altogether?

推荐答案

带有约束的外键(在某些数据库引擎中)为您提供低级别(数据库级别)的数据完整性.这意味着您无法物理创建不满足关系的记录.这只是一种更安全的方式.

Foreign keys with constraints(in some DB engines) give you data integrity on the low level(level of database). It means you can't physically create a record that doesn't fulfill relation. It's just a way to be more safe.

这篇关于定义外键有什么好处的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
FastAPI + Tortoise ORM + FastAPI Users (Python) - Relationship - Many To Many(FastAPI+Tortoise ORM+FastAPI用户(Python)-关系-多对多)