Skip to content

Commit

Permalink
correction
Browse files Browse the repository at this point in the history
  • Loading branch information
vignesh.natarajan@syncfusion.com authored and vignesh.natarajan@syncfusion.com committed Apr 2, 2024
1 parent ef1a56a commit 2444486
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Grid_Dapper.Controllers
public class GridController : ControllerBase
{
//TODO: Enter the connectionstring of database
string ConnectionString = $"Data Source=(LocalDB)\\MSSQLLocalDB;AttachDbFilename=\"C:\\Users\\NaveenPalanivel\\Downloads\\BlazorApp6 5\\BlazorApp6\\BlazorApp6\\App_Data\\NORTHWND.MDF\";Integrated Security=True;Connect Timeout=30";
string ConnectionString = $"<Enter Your connectionstring here>";
/// <summary>
/// Returns the data collection as result and count after performing data operations based on request from <see cref=”DataManagerRequest”/>
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Grid_SQLite.Data
public class OrderData
{
// TODO: Enter the connection string of the database
string ConnectionString = "Data Source=C:/Users/NaveenPalanivel/Downloads/Mydatabase/testDB.db";
string ConnectionString = "<Enter your connectionstring here>";
public async Task<List<Order>> GetOrdersAsync()
{
// Create query to fetch data from the database
Expand Down

0 comments on commit 2444486

Please sign in to comment.