changed all lambda experssion variables to z from various where appropriate
This commit is contained in:
@@ -27,7 +27,7 @@ namespace AyaNova.DataList
|
||||
|
||||
//DEPRECATED
|
||||
// //Default ID column for each row (always is aliased as df)
|
||||
// AyaDataListFieldDefinition def = objectFieldsList.FirstOrDefault(x => x.FieldKey == "df");
|
||||
// AyaDataListFieldDefinition def = objectFieldsList.FirstOrDefault(z => z.FieldKey == "df");
|
||||
// if (def == null)
|
||||
// {
|
||||
// throw new System.ArgumentNullException("DataListSqlSelectBuilder: objectFieldList is missing the df default field");
|
||||
@@ -59,7 +59,7 @@ namespace AyaNova.DataList
|
||||
// //skip the df column, it's already been processed above
|
||||
// if (ColumnName == "df")
|
||||
// continue;
|
||||
AyaDataListFieldDefinition o = objectFieldsList.FirstOrDefault(x => x.FieldKey == ColumnName);
|
||||
AyaDataListFieldDefinition o = objectFieldsList.FirstOrDefault(z => z.FieldKey == ColumnName);
|
||||
#if (DEBUG)
|
||||
//Developers little helper
|
||||
if (o == null)
|
||||
|
||||
Reference in New Issue
Block a user