changed all lambda experssion variables to z from various where appropriate
This commit is contained in:
@@ -57,7 +57,7 @@ namespace AyaNova.DataList
|
||||
|
||||
foreach (string s in ListViewFieldKeys)
|
||||
{
|
||||
AyaDataListFieldDefinition o = FieldDefinitions.FirstOrDefault(x => x.FieldKey == s);
|
||||
AyaDataListFieldDefinition o = FieldDefinitions.FirstOrDefault(z => z.FieldKey == s);
|
||||
#if (DEBUG)
|
||||
//Developers little helper
|
||||
if (o == null)
|
||||
@@ -139,7 +139,7 @@ namespace AyaNova.DataList
|
||||
//fetch it and set it
|
||||
using (var ct = AyaNova.Util.ServiceProviderProvider.DBContext)
|
||||
{
|
||||
var fc = ct.FormCustom.AsNoTracking().SingleOrDefault(x => x.FormKey == ayatypename);
|
||||
var fc = ct.FormCustom.AsNoTracking().SingleOrDefault(z => z.FormKey == ayatypename);
|
||||
//This is normal and expected in an empty db, removing this block
|
||||
// #if (DEBUG)
|
||||
// if (fc == null)
|
||||
|
||||
Reference in New Issue
Block a user