Пример #1
0
 private static Attribute GetTableAttribute(string name, string tableSchema = null, string tableName = null)
 => Attributes.Table(
     NameHelper.GetNamePlural(name, tableName),
     tableSchema);
 public static Property Create(string entityType, string propertyName = null)
 => Properties.Public(
     NameHelper.GetNamePlural(entityType, propertyName),
     GetType(entityType));