创建友谊系统数据库模式,如何?

发布于 2024-12-12 05:21:23 字数 244 浏览 0 评论 0原文

我正在创建一个社交系统,我需要建立一种友谊。任何人都可以帮助我创建它的数据库架构吗?我希望能够在群组中分配朋友(例如 google+),并根据群组或朋友(google+)设置帖子可见性。感谢任何帮助和建议。


我通过 RazorSqlServer 2008 R2 使用 C#ASP.NET MVC 3

I'm creating a social system, and I need to create a friendship. Can any body help me please to create it's database-schema? I want to be able to assign friends in groups (like google+) and set posts visibility based on groups or friends both (google+). Thanks to any help and suggestion.


I'm using C# and ASP.NET MVC 3 via Razor and SqlServer 2008 R2

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

断肠人 2024-12-19 05:21:23

首先,您可能应该发布您尝试过的内容。 “帮我完成这个”问题比“请帮我完成所有这些工作”问题会得到更好的答复。

基本架构可能类似于:

  • 用户(用户 ID、姓名等)
  • 用户组(用户 ID、组 ID、描述等)
  • 用户组相关信息(用户 ID、组 ID、相关用户 ID)

这就是您的朋友和群组所需要的全部内容。这确实要求每个朋友都在一个组中,但这并不妨碍他们在多个组中。

First, you probably should post what you have tried. You will get better responses with a "Help me finish this" question than with a "Please do all this work for me" question.

Basic schema could be something like:

  • Users (userid, name, etc etc etc)
  • UsersGroups (userid, groupid, description, etc)
  • UsersGroupsRel (userid, groupid, related userid)

That's all you should need for friends and groups. This does require that each friend be in a group, but it doesn't prevent them from being in multiple groups.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文