TT generate Find extension method with auto increment suffix #1490
Closed
Description
After upgrade ling2db to version 2.6 t4 template start generating "Find" extension method with number suffix like this:
public static SomeType Find0(this ITable<SomeType> table, Guid SomeTypeId) {}
public static SecondType Find1(this ITable<SecondType> table, Guid SecondTypeId) {}
public static ThirdType Find2(this ITable<ThirdType> table, Guid ThirdTypeId) {}
...