Hi,
There is an bug to call a SP in custom schema
I create a path for it that attached here.
and
This change in main .tt file
Func<StoredProcedure, string> WriteStoredProcReturnModelName = sp =>
string.Format("{0}{1}ReturnModel", (sp.Schema.ToLower() != "dbo") ? sp.Schema + "_" : string.Empty, sp.NameHumanCase);
Thanks
There is an bug to call a SP in custom schema
I create a path for it that attached here.
and
This change in main .tt file
Func<StoredProcedure, string> WriteStoredProcReturnModelName = sp =>
string.Format("{0}{1}ReturnModel", (sp.Schema.ToLower() != "dbo") ? sp.Schema + "_" : string.Empty, sp.NameHumanCase);
Thanks