SqlSugar/Src/Asp.Net/SqlServerTest/Models/AttributeTable.cs

21 lines
455 B
C#
Raw Normal View History

2019-05-06 12:41:48 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Data.Linq.Mapping;
using System.Linq;
using System.Text;
namespace OrmTest
{
2019-06-02 09:54:15 +08:00
[Table(Name = "MyAttributeTable")]
2019-05-06 12:41:48 +08:00
//[SugarTable("CustomAttributeTable")]
2019-06-02 09:54:15 +08:00
public class AttributeTable
2019-05-06 12:41:48 +08:00
{
[Key]
//[SugarColumn(IsPrimaryKey =true)]
public string Id { get; set; }
public string Name { get; set; }
}
}