OpenAuth.Net/OpenAuth.Repository/Core/IntAutoGenEntity.cs

27 lines
970 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace OpenAuth.Repository.Core
{
/// <summary>
/// 数据库Id为numberic且为数据库自动生成的数据实体使用该基类用法同Entity
/// <para>该场景通常为SqlServer的自动增长类型和Oracle自带的Sequence</para>
/// </summary>
public class IntAutoGenEntity :BaseEntity
{
[Browsable(false)]
[Key,DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
public override bool KeyIsNull()
{
return Id == 0;
}
public override void GenerateDefaultKeyVal()
{
//主键自动增长类型,可以不用该方法生成主键,设置该方法为空方法即可
//当DbContext执行SaveChanges()后如果添加成功可以直接获取对象的Id
}
}
}