The following file was auto-generated by LLBLGen and seems to be created with an invalid method parameter:
using System;
using System.Linq;
using SD.LLBLGen.Pro.ORMSupportClasses;
using CDS.DataAccessLayer.HelperClasses;
namespace CDS.DataAccessLayer.FactoryClasses
{
public static partial class TvfCallFactory
{
public static TableValuedFunctionCall UtilfnSplit(string alias, System.String string, System.String delimiter)
{
return new TableValuedFunctionCall(ModelInfoProviderSingleton.GetInstance().GetTypedViewFields("UtilfnSplitResultTypedView"), alias, "UtilfnSplit", string, delimiter);
}
}
}
When trying to compile this, the method argument of "System.String string" is invalid as "string" is a reserved word in C#. I can fix this locally by renaming it to "str", but it is recreated each time I run the tool