Ejemplo n.º 1
0
 /// <summary>
 /// Gets all the database model properties specified by the given table name.
 /// </summary>
 /// <param name="tableName">The name of the table to get the properties from.</param>
 /// <returns>
 /// A IEnumerable of IProperty.
 /// </returns>
 public IEnumerable <IProperty> GetEntityPropertiesByTable(string tableName)
 {
     return(EntitiesRepo.GetEntityPropertiesByTable(tableName));
 }