Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SEO-3147 ASP.NET Core Desc too long short #282

Open
wants to merge 5 commits into
base: hotfix/hotfix-v20.4.0.48
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions aspnet-core/DataManager/Filtering.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
layout: post
title: Filtering | DataManager | ASP.NET Core | Syncfusion
description: filtering
title: Filtering in ASP.NET Core DataManager control | Syncfusion
description: Learn here more about Filtering support in Syncfusion Essential ASP.NET Core DataManager Control, its elements, and more.
platform: aspnet-core
control: DataManager
documentation: ug
keywords: filter Operators, lessThan, lessThanOrEqual, less, contains
---

# Filtering
# Filtering in ASP.NET Core DataManager

Filtering is a basic technique in **DataManager** query. The “where” query is used to filter some particular or related records from the data source to review details of records.

Expand Down Expand Up @@ -81,7 +81,7 @@ This operator is used to get the records with values less than that of the filte

Result of the above code example is illustrated as follows.

![](Filtering_images/Filtering_img1.png)
![LessThan in ASP.NET Core DataManager](Filtering_images/Filtering_img1.png)

## greaterThan

Expand Down Expand Up @@ -124,7 +124,7 @@ This operator is used to get the records with values greater than that of the fi

Result of the above code example is illustrated as follows.

![](Filtering_images/Filtering_img2.png)
![GreaterThan in ASP.NET Core DataManager](Filtering_images/Filtering_img2.png)

## lessThanOrEqual

Expand Down Expand Up @@ -167,7 +167,7 @@ This operator is used to get the records with values less than or equal to the f

Result of the above code example is illustrated as follows.

![](Filtering_images/Filtering_img3.png)
![LessThanOrEqual in ASP.NET Core DataManager](Filtering_images/Filtering_img3.png)

## greaterThanOrEqual

Expand Down Expand Up @@ -210,7 +210,7 @@ This operator is used to get the records with values greater than or equal to th

Result of the above code example is illustrated as follows.

![](Filtering_images/Filtering_img4.png)
![GreaterThanOrEqual in ASP.NET Core DataManager](Filtering_images/Filtering_img4.png)

## equal

Expand Down Expand Up @@ -253,7 +253,7 @@ This operator is used to get the records with values equal to that of the filter

Result of the above code example is illustrated as follows.

![](Filtering_images/Filtering_img5.png)
![Equal in ASP.NET Core DataManager](Filtering_images/Filtering_img5.png)

## notEqual

Expand Down Expand Up @@ -296,7 +296,7 @@ This operator is used to get the records with values not equal to that of the fi

Result of the above code example is illustrated as follows.

![](Filtering_images/Filtering_img6.png)
![NotEqual in ASP.NET Core DataManager](Filtering_images/Filtering_img6.png)

## contains

Expand Down Expand Up @@ -339,7 +339,7 @@ This operator is used to get the records that contains the filter value.

Result of the above code example is illustrated as follows.

![](Filtering_images/Filtering_img7.png)
![Contains in ASP.NET Core DataManager](Filtering_images/Filtering_img7.png)

## startswith

Expand Down Expand Up @@ -382,7 +382,7 @@ This operator is used to get the records that starts with the filter value speci

Result of the above code example is illustrated as follows.

![](Filtering_images/Filtering_img8.png)
![Startswith ASP.NET Core DataManager](Filtering_images/Filtering_img8.png)
Copy link
Collaborator

@Aishwarya-Ganesan Aishwarya-Ganesan Feb 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Startswith in ASP.NET Core DataManager
like this add in all places


## endswith

Expand Down Expand Up @@ -425,7 +425,7 @@ This operator is used to get the records that ends with the filter value specifi

Result of the above code example is illustrated as follows.

![](Filtering_images/Filtering_img9.png)
![Endswith ASP.NET Core DataManager](Filtering_images/Filtering_img9.png)

## and predicate

Expand Down Expand Up @@ -468,7 +468,7 @@ The `and` predicate is used to add n-number of predicates with “and” conditi

Result of the above code example is illustrated as follows.

![](Filtering_images/Filtering_img10.png)
![And predicate ASP.NET Core DataManager](Filtering_images/Filtering_img10.png)

## or predicate

Expand Down Expand Up @@ -511,7 +511,7 @@ Using this method you can add n-number of predicates with `or` condition and fil

Result of the above code example is illustrated as follows.

![](Filtering_images/Filtering_img11.png)
![Or predicate ASP.NET Core DataManager](Filtering_images/Filtering_img11.png)

## Containment Operators

Expand Down Expand Up @@ -562,7 +562,7 @@ This operator is used to get the records that not contains the filter value.

{% endtabs %}

![](Filtering_images/Filtering_image12.png)
![Notcontains ASP.NET Core DataManager](Filtering_images/Filtering_image12.png)

### contains

Expand Down Expand Up @@ -611,7 +611,7 @@ This operator is used to get the records that contains the filter value.

{% endtabs %}

![](Filtering_images/Filtering_image111.png)
![Contains ASP.NET Core DataManager](Filtering_images/Filtering_image111.png)

### in

Expand Down Expand Up @@ -660,7 +660,7 @@ This operator used to fetch the records with value match with the given filter v

{% endtabs %}

![](Filtering_images/Filtering_image13.png)
![In ASP.NET Core DataManager](Filtering_images/Filtering_image13.png)

### notin

Expand Down Expand Up @@ -709,9 +709,9 @@ This operator used to fetch the records with value not match with the given filt

{% endtabs %}

![](Filtering_images/Filtering_image14.png)
![Notin ASP.NET Core DataManager](Filtering_images/Filtering_image14.png)

![](Filtering_images/Filtering_image15.png)
![Lambda Operators ASP.NET Core DataManager](Filtering_images/Filtering_image15.png)

## Lambda Operators

Expand Down Expand Up @@ -773,7 +773,7 @@ The ALL operator returns true if all the sub query values meet the condition. Th

{% endtabs %}

![](Filtering_images/Filtering_image16.png)
![Operators in ASP.NET Core DataManager](Filtering_images/Filtering_image16.png)

### any

Expand Down Expand Up @@ -832,4 +832,4 @@ The ANY operator returns true if any of the sub query values meet the condition.

{% endtabs %}

![](Filtering_images/Filtering_image17.png)
![Field Records in ASP.NET Core DataManager](Filtering_images/Filtering_image17.png)
6 changes: 3 additions & 3 deletions aspnet-core/DataManager/Overview.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout: post
title: Overview | DataManager | ASP.NET Core | Syncfusion
description: overview
title: Overview in ASP.NET Core DataManager control | Syncfusion
description: Learn here more about Overview in Syncfusion Essential ASP.NET Core DataManager Control, its elements, and more.
platform: aspnet-core
control: DataManager
documentation: ug
---

# DataManager
# Overview in ASP.NET Core DataManager

DataManager helps in managing relational data in the ASP.NET Core. Its rich features make querying data sources easier. The ODataClient supports OData queries that are enabled in the Web API & WCF data services.

Expand Down
6 changes: 3 additions & 3 deletions aspnet-core/GettingStarted/Getting-Started-VS2017.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
layout: post
title: Getting Started | ASP.NET Core | Syncfusion
description: Getting Started.
title: Getting Started with ASP.NET Core Platform | Syncfusion
description: Learn here more about Getting Started with Syncfusion Essential ASP.NET Core Application, its elements, and more.
platform: aspnet-core
control: Common
documentation: ug
---


# Getting Started
# Getting Started with ASP.NET Core Application

## ASP.NET Core 1.1 Application Using Visual Studio 2017

Expand Down
6 changes: 3 additions & 3 deletions aspnet-core/Grid/Overview.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
layout: post
title: grid widget for Syncfusion Essential ASP.NET Core
description: Overview for grid
title: Grid widget for Syncfusion Essential ASP.NET Core
description: Learn here more about Overview in Syncfusion Essential ASP.NET Core Grid Control, its elements, and more.
platform: aspnet-core
control: grid
documentation: ug
---
# OverView
# OverView in ASP.NET Core Grid

The grid control for ASP.NET Core is an efficient display engine for tabular data. It will pull from a datasource, such as List of collections, OData web services, or DataManager and binding data fields to columns and displaying a column header to identify the field. It is a feature-rich control that provides extensive appearance customization options with support for grouped records. This grid is very useful for generating complex grid-based reports with rich formatting. Almost all the features in JS grid are applicable to grid in ASP.NET Core too.

Expand Down
4 changes: 2 additions & 2 deletions aspnet-core/PdfViewer/Getting-Started.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: post
title: Getting-Started
description: getting started
title: Getting Started with ASP.NET Core PdfViewer control | Syncfusion
description: Learn here more about Getting Started with Syncfusion Essential ASP.NET Core PdfViewer, its elements, and more.
platform: aspnet-core
control: PdfViewer
documentation: ug
Expand Down
6 changes: 3 additions & 3 deletions aspnet-core/ReportViewer/Report-Controller.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout: post
title: Report Controller | Syncfusion
description: report controller
title: Report Controller in ASP.NET Core ReportViewer control | Syncfusion
description: Learn here more about report controller support in Syncfusion Essential ASP.NET Core ReportViewer Control, its elements, and more.
platform: aspnet-core
control: ReportViewer
documentation: ug
---

# Report Controller
# Report Controller in ASP.NET Core ReportViewer

The ReportViewer uses Web API services to process the report file, process the request from control and to return the processed data to control. The Syncfusion.EJ.ReportViewer assembly has helper APIs to define the service actions and process the service requests.

Expand Down
6 changes: 3 additions & 3 deletions aspnet-core/ReportViewer/SSRS-Configuration.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout: post
title: SSRS Configuration | Syncfusion
description: ssrs configuration
title: SSRS Configuration in ASP.NET Core ReportViewer control | Syncfusion
description: Learn here more about ssrs configuration support in Syncfusion Essential ASP.NET Core ReportViewer Control, its elements, and more.
platform: aspnet-core
control: ReportViewer
documentation: ug
---

# SSRS Configuration
# SSRS Configuration in ASP.NET Core ReportViewer

The ReportViewer has support to load RDL reports from SSRS server. You have to set your SSRS server URL to ReportViewer’s ReportServiceUrl property and set the relative path of RDL file in SSRS to ReportViewer’s ReportPath property.

Expand Down
6 changes: 3 additions & 3 deletions aspnet-core/Tab/Overview.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
layout: post
title: Overview | Tab | ASP.NET Core | Syncfusion
description: overview
title: Overview in ASP.NET Core Tab control | Syncfusion
description: Learn here more about Overview in Syncfusion Essential ASP.NET Core Tab Control, its elements, and more.
platform: aspnet-core
control: Tab
documentation: ug
---

# Tab
# Overview in ASP.NET Core Tab

The tab control is an interface where the list of items are expanded from a single item. Each tab panel defines its header text or header template, as well as a content template. The tab items can be dynamically added and removed. It is loaded with AJAX content useful for building dashboards where space is limited.

Expand Down