Skip to content

Commit e4983ac

Browse files
committed
Sample(BLAZ-29224): Custom binding in blazor datagrid sample
1 parent 14726ac commit e4983ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Custom_binding/Custom_binding/Data/GridCustomDataAdaptor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class GridCustomDataAdaptor : DataAdaptor
1616

1717
public GridCustomDataAdaptor()
1818
{
19-
Orders = Enumerable.Range(1, 75).Select(x => new Order()
19+
Orders = Enumerable.Range(1, 200).Select(x => new Order()
2020
{
2121
OrderID = 1000 + x,
2222
CustomerID = (new string[] { "ALFKI", "ANANTR", "ANTON", "BLONP", "BOLID" })[new Random().Next(5)],

0 commit comments

Comments
 (0)