簡易留言薄系統-ASP.NET MVC(Model層)

來源:互聯網
上載者:User

標籤:isp   display   play   UI   data   models   address   splay   model   

我的開發順序是從Model層開始。在Model層目前一共有4個類。Model層除MvcBbsContext引用了System.componentModel 與 System.ComponentModel.DataAnnotations,在MvcBbsContext類中引用了System.Data.Entity

1.User

代碼:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel;

namespace MvcBBSApplication.Models
{
public class User
{
[Key]
public int Id { get; set; }

[DisplayName("UserName")]
[Required(ErrorMessage = "Please enter the Email")]
[DataType(DataType.EmailAddress, ErrorMessage = "Please enter the correct format")]
public string Email { get; set; }

[DisplayName("NickName")]
[Required(ErrorMessage = "Please enter the NickName")]
[MaxLength(10, ErrorMessage = "MaxLength 20 words")]
public string NickName { get; set; }

[DisplayName("Password")]
[Required(ErrorMessage = "Please enter the Password")]
[MaxLength(10, ErrorMessage = "MaxLength 10 words")]
[DataType(DataType.Password)]
public string Password { get; set; }

[DisplayName("CreatOn")]
[Required]
public DateTime CreatOn { get; set; }
}
}

-------------------------------------------------------------

2.Message

代碼:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;

namespace MvcBBSApplication.Models
{
public class Message
{
[Key]
public int Id { get; set; }

[DisplayName("Title")]
[Required(ErrorMessage = "Please enter the Title")]
[MaxLength(50, ErrorMessage = "MaxLength 50 words")]
public string Title { get; set; }

[DisplayName("UserName")]
public User User { get; set; }

[DisplayName("Content")]
[DataType(DataType.MultilineText)]
public string content { get; set; }

[DisplayName("CreatOn")]
[Required]
public DateTime CreatOn { get; set; }

[DisplayName("IpAddress")]
[Required]
public string Ip { get; set; }
}
}

----------------------------------------------

3.Reply

代碼:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;

namespace MvcBBSApplication.Models
{
public class Reply
{
[Key]
public int Id { get; set; }

[DisplayName("Title")]
public Message Message { get; set; }

[DisplayName("UserName")]
public User User { get; set; }

[DisplayName("Content")]
[Required(ErrorMessage="Please enter content")]
[DataType(DataType.MultilineText)]
public string Content { get; set; }

[DisplayName("CreatOn")]
[Required]
public DateTime CreatOn { get; set; }

[DisplayName("IpAddress")]
[Required]
public string Ip { get; set; }
}
}

------------------------------------------------

4.MvcBbsContext

代碼:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity;

namespace MvcBBSApplication.Models
{
public class MvcBbsContext:DbContext
{
public MvcBbsContext()
: base("name=DefaultConnection")
{
}

public DbSet<User> Users { get; set; }
public DbSet<Message> Messages { get; set; }
public DbSet<Reply> Replys { get; set; }
}
}

簡易留言薄系統-ASP.NET MVC(Model層)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.