Fixed table-name not getting picked

master v1.0.0
Railz 6 years ago
parent 244c9a9ac6
commit 248be3320f

@ -26,7 +26,7 @@ namespace eu.railduction.netcore.dll.Database_Attribute_System
{ {
// Check if class has attribute 'DbObject' and get the database table-name // Check if class has attribute 'DbObject' and get the database table-name
if (!(classType.GetCustomAttribute(typeof(DbObject), true) is DbObject dbObjectAttribute)) throw new InvalidOperationException("Cannot generate SQL-Query of class. Missing Attribute 'DbObject'"); if (!(classType.GetCustomAttribute(typeof(DbObject), true) is DbObject dbObjectAttribute)) throw new InvalidOperationException("Cannot generate SQL-Query of class. Missing Attribute 'DbObject'");
string tableName = dbObjectAttribute._tableName ?? dbObjectAttribute._tableName; // If no alternative table-name is specified, use the class-name string tableName = dbObjectAttribute._tableName ?? classType.Name; // If no alternative table-name is specified, use the class-name
// Iterate thru all properties // Iterate thru all properties
List<string> dbPrimaryKeys = new List<string>() { }; List<string> dbPrimaryKeys = new List<string>() { };

Loading…
Cancel
Save