mirror of
				https://github.com/nsnail/FreeSql.git
				synced 2025-11-04 09:15:27 +08:00 
			
		
		
		
	调整 OraclePrimaryKeyName 特性
This commit is contained in:
		@@ -0,0 +1,17 @@
 | 
			
		||||
using System;
 | 
			
		||||
 | 
			
		||||
namespace FreeSql.DataAnnotations
 | 
			
		||||
{
 | 
			
		||||
    public class OraclePrimaryKeyNameAttribute : Attribute
 | 
			
		||||
    {
 | 
			
		||||
        public OraclePrimaryKeyNameAttribute(string name)
 | 
			
		||||
        {
 | 
			
		||||
            this.Name = name;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        /// <summary>
 | 
			
		||||
        /// 主键名
 | 
			
		||||
        /// </summary>
 | 
			
		||||
        public string Name { get; set; }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user