Base solution for your next web application

Activities of "gunpal5"

Well, you can easily search in all files to see where it is being used, or may be search for all references. Just press ctrl+shift+f and type the Action Method name, e.g. "DownloadTempFile" you will get the list of files where it is being used.

Regards, Gunpal Jain

Hi,

As per my understanding, It is use for handling file uploads and downloads.

Regards, Gunpal Jain

I think, you need to clear your concepts of typescript first.

You need to add all declaration in a separate file with extension *.d.ts, and add the path of decleration file into _references.ts

here's my declaration code for abp module, I named it abp.d.ts and added to "typings/abp.d.ts"

declare module abp
{
    var appPath: string;
    var pageLoadTime: Date;
    function toAbsAppPath(path: string);    
}
  1. Create a folder "typescript" in your web project.
  2. add a file mytypings.d.ts (or whatever you like but with extension *.d.ts)
  3. add declarations in mytypings.d.ts
  4. add a file "_references.ts" on your project root, and add this line:
/// <reference path="typescript/mytypings.d.ts" />

make sure your Application Service Interfaces are extending IApplicationService interface. e.g.

public interface IMyAppService:IApplicationService
{
 Task SomeApplicationServiceMethod();
}

Hello,

Thank you very much.

I'm really enjoying working on this framework. This is an excellent work.

I would like to contribute on this project when I get time. I can help to write few scaffolders for application services, and angular views with typescript codes. I will do that after I finish with my current projects.

Regards, Gunpal Jain

Hello,

I have used UserId for now to avoid this issue.

This code was written in application service, which was called by a MVC controller. The controller's action method already had UoW attribute and virtual keyword. I will try to add virtual keyword to application service method too, just to try if that work or not.

Thanks, Gunpal Jain

Showing 11 to 17 of 17 entries