我正在使用SDK netcoreapp2.2将现有的MVC应用程序迁移到ASP.NET Core MVC应用程序。
我在其中使用了一些自定义剃刀助手,但是dotnetcore2.2不支持 @helper 关键字。
显示类似
的错误错误RZ1002:不支持helper指令。
ASP.NET MVC示例:
import itertools
L=[(x, y) for x, y in itertools.product(df.columns,df.columns) if x != y]
pd.concat([pd.DataFrame({''.join(i):df.loc[:,i].prod(axis=1)}) for i in L],axis=1)