Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "ramezani583"

Hi, It looks like I'm mistaken in defining the .TS or .Html files or in the call its. How can I track the error in client side code? I know that the entity's methods defined on the server side are completely correct. But I do not know how to trace and debug the client side!

my project type is: asp.net core & angular (v5.0.4)

Hi, I am trying to use Android platform to test the Project (sample development step by step Mobile (Xamarin)- https://aspnetzero.com/Documents/Develo ... ep-Xamarin), in this regard, when I want to run my sample, After launch Android Emulator(print screen Attached file) when Press F5 in solution, the visual studio messages that Deploy are Failed, although Error List is empty!

hi, i can not change GetProvinces(same as getpeople method in step by step developing) to async!

when i changing "private readonly IRepository<Province.Province> _provinceRepository" to "private readonly IRepository<Province> _provinceRepository" i have error in build

and when changing "private readonly IRepository<Province> _provinceRepository" to "private readonly IRepository<Province.Province> _provinceRepository"

GetProvinces method have error!

--

List<Province>' does not contain a definition for 'GetAwaiter' and no extension method 'GetAwaiter' accepting a first argument of type 'List<Province>' could be found (are you missing a using directive or an assembly reference?)

public interface IProvinceAppService : IApplicationService { Task <ListResultDto<ProvinceListDto>> GetProvinces(GetProvincesInput input); Task CreateProvince(CreateProvinceInput input); Task DeleteProvince(EntityDto input); }


namespace SSoft.ResourceAssessmentsNetwork.BasicInfo.Provinces { [AbpAuthorize(AppPermissions.Pages_BasicInfo_Province)] public class ProvinceAppService : ResourceAssessmentsNetworkAppServiceBase, IProvinceAppService {

    private readonly IRepository&lt;Province.Province&gt; _provinceRepository;

    public ProvinceAppService(IRepository&lt;Province.Province&gt; provinceRepository)
    {
        _provinceRepository = provinceRepository;
    }
  
    [AbpAuthorize(AppPermissions.Pages_BasicInfo_Province_CreateProvince)]
    public async Task CreateProvince(CreateProvinceInput input)
    {
        var province = ObjectMapper.Map&lt;Province.Province&gt;(input);
        await _provinceRepository.InsertAsync(province);
    }
    [AbpAuthorize(AppPermissions.Pages_BasicInfo_Province_DeleteProvince)]
    public async Task DeleteProvince(EntityDto input)
    {
        await _provinceRepository.DeleteAsync(input.Id);
    }
  
    public async Task&lt;ListResultDto&lt;ProvinceListDto&gt;> GetProvinces(GetProvincesInput input)
    {
       var provinces = await _provinceRepository
            .GetAll()
            .WhereIf(
                !input.Filter.IsNullOrEmpty(),
                p => p.Name.Contains(input.Filter) 
            )
            .OrderBy(p => p.Name)
            .ToList();
        return new ListResultDto&lt;ProvinceListDto&gt;(provinces.MapTo&lt;List&lt;ProvinceListDto&gt;>());
    }
}

}

hi, i want add new entity(province) same as Person I'm following the Development-Step-by-Step-Angular page, but I catch this error. i send client side code on "main.rar" file please check my code and tell me where I'm wrong.

hi, my project type isASP.NET Core & Angular (V5.0.4)

Add-Migration "Added_Provinces_Table"

System.Exception: Could not find content root folder! at SSoft.ResourceAssessmentsNetwork.Web.WebContentDirectoryFinder.CalculateContentRootFolder() at SSoft.ResourceAssessmentsNetwork.EntityFrameworkCore.ResourceAssessmentsNetworkDbContextFactory.CreateDbContext(String[] args) at Microsoft.EntityFrameworkCore.Design.Internal.DbContextOperations.CreateContextFromFactory(Type factory) at Microsoft.EntityFrameworkCore.Design.Internal.DbContextOperations.<>c__DisplayClass14_0.<FindContextFactory>b__1() at Microsoft.EntityFrameworkCore.Design.Internal.DbContextOperations.CreateContext(Func1 factory) at Microsoft.EntityFrameworkCore.Design.Internal.DbContextOperations.CreateContext(String contextType) at Microsoft.EntityFrameworkCore.Design.Internal.MigrationsOperations.AddMigration(String name, String outputDir, String contextType) at Microsoft.EntityFrameworkCore.Design.OperationExecutor.AddMigrationImpl(String name, String outputDir, String contextType) at Microsoft.EntityFrameworkCore.Design.OperationExecutor.AddMigration.<>c__DisplayClass0_1.<.ctor>b__0() at Microsoft.EntityFrameworkCore.Design.OperationExecutor.OperationBase.<>c__DisplayClass3_01.<Execute>b__0() at Microsoft.EntityFrameworkCore.Design.OperationExecutor.OperationBase.Execute(Action action) Could not find content root folder!

Question

hi, i set SMTP host to smtp.gmail.com & SMTP port to 465 & Use SSL for test Emai,l but give an error!

Should I set the "static class EmailSettingNames"? Where should I set thesender password?

Hi, I want publish my project, if only copy bin folder(server side) to host, it's enough? Is there a document for publishing project?

hi, I created "ResourceAssessmentsNetwork-fa.xml" for new language and set new language as a default language, but new language is't as a Default language yet and when i changed manually language(in drop-down box) to new language it is not work!

video is here: <a class="postlink" href="https://ufile.io/ksold">https://ufile.io/ksold</a> <a class="postlink" href="http://s000.tinyupload.com/?file_id=62195452604544471198">http://s000.tinyupload.com/?file_id=621 ... 4544471198</a>

hi, i have 1 error in first build in angular project!

I don't know 2 different path! My project address is "D:\Project\PhoneBook_V5\PhoneBook\angular"

Error CS1926 Error opening Win32 manifest file D:\src\shared\utils\chat-message.component.html -- Could not find a part of the path 'D:\src\shared\utils\chat-message.component.html'. SSoft.PhoneBook.AngularUI D:\Project\PhoneBook_V5\PhoneBook\angular\CSC 1 Active

hi, I want build angular project. My typescript SDK version is :2.6.2.0

3 error are happens: 1: Error opening Win32 manifest file D:\src\shared\utils\chat-message.component.html -- Could not find a part of the path 2 : Error TS2339 (TS) Property 'value' does not exist on type 'number | (() => string) | ((...items: any[]) => number) | (() => any) | { (...items: ReadonlyArra...'. Property 'value' does not exist on type 'number'. src (tsconfig project) D:\Project\PhoneBook_V5\PhoneBook\angular\src\app\admin\tenants\create-tenant-modal.component.ts 75 Active

3: Error TS2339 (TS) Property 'isFree' does not exist on type 'number | (() => string) | ((...items: any[]) => number) | (() => any) | { (...items: ReadonlyArra...'. Property 'isFree' does not exist on type 'number'. src (tsconfig project) D:\Project\PhoneBook_V5\PhoneBook\angular\src\app\admin\tenants\create-tenant-modal.component.ts 93 Active

Showing 11 to 20 of 32 entries