Hello community,
I am working on a C# project (Visual Studio 2019) with Angular, in which I want to show the data from a server Microsoft SQL database in a table (using Ignite UI).
I searched for tutorials to create a connection with the database and to prepare the data from the database in a suitable form in order to show this data in a table (using Ignite UI). Unfortunately I did not find anything, there is why I am writing here.
What I have so far:
1) tracing-system.component.ts
export class TracingSystemComponent implements OnInit { constructor() { } ngOnInit(): void { } localData = [ { Name:'John Smith', Age: 29 }, { Name:'Alice in Wonderland', Age: 27 }, { Name:'Jessica', Age: 31 }, ]; }
2) tracing-system.component.html
<div style="text-align: center;"> <igx-grid [data]="localData" width="1000px" height="800px" style="margin: auto" [allowFiltering]="true"> <igx-column field="Name" dataType="string"></igx-column> <igx-column field="Age" dataType="number"></igx-column> </igx-grid> </div>
So my question is how can I connect my C# project (Visual Studio 2019) to a Microsoft server SQL database and how can I show the data from the database in a table, using Ignite UI (igx-grid, igx-column)?
Hello Silvia,
Thank you for posting in our community.
What I can suggest is to take a look at our blog post for Building a CRUD-enabled Angular Application with Ignite UI For Angular and CDATA API Server.
Additionally, this GitHub repo and specifically the Dock Manager with Data Analysis project might be of help to you. On the client app, igxGrid uses a service to connect to the server and retrieve the data source.
Please note, that these suggestions are about the data access layer on an application level and that kind of issue is beyond the scope of Infragistics support.
Please let me know if you need more information.