Starts in:
1 DAY
8 HRS
58 MIN
39 SEC
Starts in:
1 D
8 H
58 M
39 S

Activities of "EngincanV"

Hi again @commitdeveloper1, you can not access directly to precompanyname property because you are keeping Employment as collection instead of class. In other words, you need to iterate to collection to reach its properties.

public async Task<List<EmploymentEducation>> GetListAsync(int skipCount, int maxResultCount, string sorting, string filter = null)
        {
            var queryable = await GetMongoQueryableAsync();
            return await queryable
                .WhereIf<EmploymentEducation, IMongoQueryable<EmploymentEducation>>(
                            !filter.IsNullOrWhiteSpace(),
                            //you need to iterate collection to reach its properties(prevcompanyname)
                            employment => employment.Employments.Any(x => x.PrevCompanyName.Contains(filter))
                        )
                        .OrderBy(sorting)
                        .As<IMongoQueryable<EmploymentEducation>>()
                                //.Skip(skipCount)
                                //.Take(maxResultCount)
                                .ToListAsync();
        }

Can you share your EmploymentEducationRepository class?

Yes,,here it is:

Thanks,

Can you also check your EmploymentEducationRepository class? Is it both inherit from MongoDbRepository<IMyMongoDbContext, EmploymentEducation, Guid> and IEmploymentRepository?

It's recommended.

Can you share your EmploymentEducationRepository class?

Did you add your Employment, EmploymentEducation and Education classes into your dbcontext class? (Like below)

...

public DbSet<Employment> Employments {get; set;}
public DbSet<EmploymentEducation> EmploymentEducations {get; set;}
public DbSet<Education> Educations {get; set;}

...

Hi @paul.harriman, I couldn't reproduce your error. It works as expected for me.

  • Which browser do you use? (I've tried it on Microsoft Edge and Opera)
Answer

Is the app-pro template with version 4.4.0-rc.1 for commercial user released? I am still cannot download a start template code with the 4.4.0-rc.1

Hi @trendline, yes it's released. Could you specify the version (--version 4.4.0-rc.1) for downloading a startup template if you are using the CLI? (If you use Suite you can check the preview box while creating a project) Because otherwise, it might be using a cached template (with version 4.3.3)

Answer

Hi support,

When I try to go to My profile address after logging in to the commercial.abp.io, I get an "Internal Server Error" error.

Hi @gvnuysal, thanks for reporting this issue. It will be fixed.

Hi @serdar,

  • Can you change your proxy-server call as in the below screenshot? (It should be products instead of product)

  • Because Suite generates app service for Product as ProductsAppService.

Hi, I need the steps to reproduce this problem. Can you also specify your version?

  • Hi @VivekKoppula, your HttpRequest Activity's path must start with " / ".
  • So your path must be /hello-welcome instead of hello-welcome.

  • After publishing the workflow, you should be able to navigate to the route (/hello-welcome) and view the output that you've defined.

  • You can import the following JSON to create the workflow from the Elsa Dashboard.
{
  "$id": "1",
  "definitionId": "b165f4cb25be4b6c8cfb660d859673d7",
  "versionId": "6a49a7f97881419d8c75dd0f4a4fe76a",
  "name": "support",
  "displayName": "support",
  "version": 1,
  "variables": {
    "$id": "2",
    "data": {}
  },
  "customAttributes": {
    "$id": "3",
    "data": {}
  },
  "isSingleton": false,
  "persistenceBehavior": "WorkflowBurst",
  "deleteCompletedInstances": false,
  "isPublished": true,
  "isLatest": true,
  "activities": [
    {
      "$id": "4",
      "activityId": "9db82643-3f96-4b7d-bef0-ca743f97f63d",
      "type": "HttpEndpoint",
      "displayName": "HTTP Endpoint",
      "persistWorkflow": false,
      "loadWorkflowContext": false,
      "saveWorkflowContext": false,
      "persistOutput": false,
      "properties": [
        {
          "$id": "5",
          "name": "Path",
          "expressions": {
            "$id": "6",
            "Literal": "/hello-welcome"
          }
        },
        {
          "$id": "7",
          "name": "Methods",
          "expressions": {
            "$id": "8",
            "Json": "[\"GET\"]"
          }
        },
        {
          "$id": "9",
          "name": "ReadContent",
          "expressions": {
            "$id": "10"
          }
        },
        {
          "$id": "11",
          "name": "TargetType",
          "expressions": {
            "$id": "12"
          }
        }
      ]
    },
    {
      "$id": "13",
      "activityId": "72503314-05d2-46d2-9c41-08f6d15782d9",
      "type": "WriteHttpResponse",
      "displayName": "HTTP Response",
      "persistWorkflow": false,
      "loadWorkflowContext": false,
      "saveWorkflowContext": false,
      "persistOutput": false,
      "properties": [
        {
          "$id": "14",
          "name": "StatusCode",
          "expressions": {
            "$id": "15"
          }
        },
        {
          "$id": "16",
          "name": "Content",
          "expressions": {
            "$id": "17",
            "Literal": "Hello world from /hello-welcome."
          }
        },
        {
          "$id": "18",
          "name": "ContentType",
          "expressions": {
            "$id": "19"
          }
        }
      ]
    }
  ],
  "connections": [
    {
      "$id": "20",
      "sourceActivityId": "9db82643-3f96-4b7d-bef0-ca743f97f63d",
      "targetActivityId": "72503314-05d2-46d2-9c41-08f6d15782d9",
      "outcome": "Done"
    }
  ],
  "id": "6a49a7f97881419d8c75dd0f4a4fe76a"
}
Showing 711 to 720 of 731 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 20, 2024, 13:06