Tagged Questions
0
votes
1answer
126 views
DataView RowFilter determine if a DateTime column is greater than another DateTime column plus 6 months
I have a dataview which has two columns.
A and B
each column has a date in it of type DateTime.
I would like to filter the dataview to only show rows where dates in A are greater than dates in B plus ...
0
votes
0answers
136 views
Month Filtering on DataView.RowFilter
I have a calendar that we're setting up for a client and as a part of it, we're setting up the ability to have events recurring on a monthly basis. I decided on a DataView to reduce the load on the ...
0
votes
0answers
190 views
RowFilter not applied to newly added rows in C#
I have a DataGridView and I've set it's DataSource to be the DefaultView of a DataTable
dataGridView1.DataSource = table.DefaultView;
I then apply a filter on the datasource
...
1
vote
0answers
159 views
DataView RowFilter with TimeSpan DataType
i try to use the DataView RowFilter for a column with DataType "TimeSpan" as following:
dv.RowFilter = ("Convert([time],System.String) LIKE '17:12:00'")
I've found that the search Parameter "%17% ...
0
votes
2answers
1k views
DataView.Rowfilter multiple filter in Loop
DataView DV = DataTable.AsDataView();
for(int i=0; i<ConditonQueue.Count; i++)
{
DV.RowFilter = ConditonQueue.ElementAt(i);
}
Here after the loop DV is filtered only for last element in ...
0
votes
1answer
593 views
How to set RowFilter case-insensitive for DataView
I have a datagrid, its datasource is a dataview. There is a textbox with which users can type in filter text. I want to make the filter to be case insensitive.
say, the typed text is "Tg"
I tried ...
0
votes
1answer
793 views
DataView RowFilter is not giving proper results
I am using Data Grid View to show 1000 Rows and 800 Columns of Data (only one character per cell). There is a Check Box column also. I have added a context menu item like "View Selected Cells". On ...
1
vote
1answer
316 views
Searching for special characters on a DataVew RowFilter
How can you use the RowFilter to search on a string with an ampersand in (or any other 'special' character. e.g. !"£$%^&*())
When I try I receive the following error:
Error in Like operator: ...
0
votes
0answers
128 views
C# Filter DataView correct for Chart
I'm using a DataView with 2 (in combination) unique columns: Week_Number, Week_Year. One stores the Week number of that record the other the according Year, i.e. Week_Num = 27 and Week_Year = 2012 for ...
2
votes
1answer
633 views
Match a single character in a DataView RowFilter?
I'm wondering if there is any possible way of applying a RowFilter on a DataView which provides single character matching?
e.g. DataView.RowFilter = "SOME_COL like 'A_BCD%';
where the underscore ...
0
votes
2answers
1k views
Filter number in a DataView using RowFilter in C#4.0
I'm trying to filter my DataView DataSet using RowFilter.
I would like to perform a like statement on an Integer column
So something like this:
myDataView.RowFilter ="ID LIKE %1%";
This works ...
0
votes
1answer
1k views
How to filter multiple rows in dataview
I need to filter multiple rows in dataview. Here I used rowfilter. But, I want to filter multiple rows. Which command can be used? My code is:
foreach (string s1 in list)
{
if (s1 != ...
0
votes
3answers
1k views
Add Rowfilter condition for DateTime Year only check
I am trying to use a DataView.RowFilter in order to filter all entries that do not belong in a specified year. My code is as follows:
bigDT.DefaultView.RowFilter = "year(date_posted)=2011";
This ...
-1
votes
1answer
1k views
I would like filter DataGridView by DataView
I tried the code below, but it does not work. What's wrong?
private void textBox1_TextChanged(object sender, EventArgs e)
{
// DataView component
DataView view = new DataView();
...
0
votes
2answers
990 views
Hide UltragridRow that has no visible child rows after applying RowFilter
So, I am setting the DataSource of my BindingSource to the DefaultViewManager of a DataSet that has a DataRelation. I then set my BindingSource as the UltraGrid's DataSource before applying a ...
1
vote
1answer
644 views
How do you use DataView's RowFilter using keyword 'IN' to filter collection
I would like to filter a collection populated in a DataView. The control I am using for this is a multi-select checkbox Combobox. The string returned from this is 'val1, val2, val3'. I then pass this ...
1
vote
1answer
2k views
How to get data after DataView filtering?
I apply a filter to Dataview and after that I need to get the filtered data.
before filtering I did:
dvUnloadOpenAccounts.RowFilter = "uso_id = '30640'";
foreach (DataRow row in ...
0
votes
3answers
2k views
Trim function not removing spaces in name
bool Res = false;
DataView DV = new DataView(DT);
DV.RowFilter = "Trim(Originator)='"+OrginatorName.Trim()+"'";
if (DV.Count > 0)
{
Res = true;
}
I need to get ...
0
votes
2answers
1k views
Filter records based on Time using Dataview Rowfilter
Is it possible to get records between a Timespan from a DataTable using the RowFilter property of the Defaultview that belongs to the table.
Purpose:
I would like to check if Current ...
6
votes
2answers
917 views
Why does DataTable.Select() return the wrong rows?
The DataTable.Select() function returns the wrong rows with a filter like this...
"booleanColumn1 AND booleanColumn2 AND GuidColumn1 = '00000000-0000-0000-0000-000000000000')"
Making virtually any ...
0
votes
1answer
571 views
DataView rowfilter with 2 levels of parents
How can I create DataView rowfilter with two levels of parent relations?
Within one level, I can do something like: "Parent(NameOfTheRelation).id_Something = " + 17
However, with 2 levels I don't ...
4
votes
3answers
6k views
Compare dates in DataView.RowFilter?
I am scratching my head over something rather stupid yet apparently difficult.
DataView dvFormula = dsFormula.Tables[0].DefaultView;
dvFormula.RowFilter = "'" + startDate.ToString("yyyyMMdd") + "' ...
2
votes
2answers
1k views
How to filter a dataview
I have a dataview that contains a list of tables. I am reading in a list of values that I then want to apply as a filter to this dataview. The list of values is actually in the form of "table1, ...
0
votes
2answers
863 views
DataView.Filter not working with multiple % in “like %”?
Below SQL query works when the spaces in the role name are replaced by %: 1 row is returned
select * from cmrdata.dbo.tblRoles where rolename like '%Super%Administrator%'
However, when I try to ...
0
votes
1answer
502 views
Difference between ADO.NET 1.0 and 3.5 using RowFilter and strings?
I have recently been tasked with upgrading an application from .net 1.1 to 3.5 and came across a RowFilter on a DataView that had a different behavior between the two versions.
Here is my code block ...
2
votes
1answer
1k views
Injection Attacks against .NET DataView RowFilter
So I'm writing a handler that filters a cached DataTable based on the AppRelativeCurrentExecutionFilePath using the DataView RowFilter property. What's the best way to encode the input to prevent an ...

