Dreamine.Database.Abstractions 1.0.1
Dreamine.Database.Abstractions 공용 계약과 추상화를 제공합니다.
로딩중...
검색중...
일치하는것 없음
DatabaseColumnAttribute.cs
이 파일의 문서화 페이지로 가기
2
11[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = false)]
12public sealed class DatabaseColumnAttribute : Attribute
13{
46 public DatabaseColumnAttribute(string name)
47 {
48 ArgumentException.ThrowIfNullOrWhiteSpace(name);
49 Name = name;
50 }
51
60 public string Name { get; }
61}