Exemple #1
0
 internal static string ToGetClassName(this string tableName)
 {
     return(LogicalUnit.GetClassName(tableName));
 }
Exemple #2
0
        internal static MariaDbSchema ToSetLogic(this MariaDbSchema obj)
        {
            LogicalUnit.SetPrimaryKey(obj);

            return(obj);
        }
Exemple #3
0
 internal static KeyValuePair <string, string> ToMatchSqlType(this KeyValuePair <string, string> obj, string lenght, bool nullable)
 {
     return(LogicalUnit.MatchSqlType(obj, lenght, nullable));
 }
Exemple #4
0
        internal static DataAccessModel ToSetInheritence(this DataAccessModel obj)
        {
            LogicalUnit.SetInheritenceOfClass(obj);

            return(obj);
        }
Exemple #5
0
 internal static KeyValuePair <string, string> ToChangeTypeMap(this KeyValuePair <string, string> obj, bool nullable)
 {
     return(LogicalUnit.ChangeTypeMap(obj, nullable));
 }