-
Notifications
You must be signed in to change notification settings - Fork 892
Open
Description
Feature 特性
namespace FreeSql.DataAnnotations;
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class IndexAttribute : Attribute
{
public string Fields { get; set; }
}简要描述原因
Fields 能否由string改为string[]
public string[] Fields { get; set; }
public IndexAttribute(string name, params string[] fields)
{
this.Name = name;
this.Fields = fields;
}使用场景
[Index("{tablename}_user_phone", "user_id", "phone`)]Metadata
Metadata
Assignees
Labels
No labels