Click here to Skip to main content
15,888,984 members
Home / Discussions / C#
   

C#

 
AnswerRe: Automatically optimize all tables in a MySQL database Pin
Eddy Vluggen21-Aug-12 1:51
professionalEddy Vluggen21-Aug-12 1:51 
GeneralRe: Automatically optimize all tables in a MySQL database Pin
Alagiri.periyasamy@merrillcorp.com21-Aug-12 2:05
Alagiri.periyasamy@merrillcorp.com21-Aug-12 2:05 
AnswerRe: Automatically optimize all tables in a MySQL database Pin
Eddy Vluggen21-Aug-12 2:17
professionalEddy Vluggen21-Aug-12 2:17 
QuestionLinq - Conditions for two categories in parallel Pin
Ronenb21-Aug-12 1:18
Ronenb21-Aug-12 1:18 
AnswerRe: Linq - Conditions for two categories in parallel Pin
Wayne Gaylard21-Aug-12 3:21
professionalWayne Gaylard21-Aug-12 3:21 
AnswerMessage Removed Pin
21-Aug-12 3:40
professionalN_tro_P21-Aug-12 3:40 
GeneralRe: Linq - Conditions for two categories in parallel Pin
Ronenb22-Aug-12 20:54
Ronenb22-Aug-12 20:54 
GeneralRe: Linq - Conditions for two categories in parallel Pin
Ronenb26-Aug-12 21:59
Ronenb26-Aug-12 21:59 
hi I’ve implement your idea and it work great, thank u!
I have another question and hope you can assist
The use will choose from UI several filter criteria, so the running filter should be dynamic and not hard coded
Such as sometimes it could be collection.Filter(name1, value1)
Or
collection.Filter(name1, value1).Filter(name2, value2)
collection.Filter(name1, value1).Filter(name2, value2). Filter(name3, value3)
and so on
how can I define by code the dynamic filter?
Should I use recursive ?

int interaction = #UserFilter.count;
DoFilter(string name, string value)
{
While (interaction--)
{
collection.Filter(UserFilter[interaction].name, UserFilter[interaction].value)
DoFilter(UserFilter[interaction].name, UserFilter[interaction].value);
}
}
thanks
ronen
GeneralMessage Removed Pin
27-Aug-12 2:41
professionalN_tro_P27-Aug-12 2:41 
GeneralRe: Linq - Conditions for two categories in parallel Pin
Ronenb27-Aug-12 5:46
Ronenb27-Aug-12 5:46 
GeneralDynamic Keyword Pin
gopesh201020-Aug-12 23:12
gopesh201020-Aug-12 23:12 
GeneralRe: Dynamic Keyword Pin
Pete O'Hanlon20-Aug-12 23:35
mvePete O'Hanlon20-Aug-12 23:35 
QuestionSame entries in Listbox from WCF Pin
coem20-Aug-12 22:19
coem20-Aug-12 22:19 
AnswerRe: Same entries in Listbox from WCF Pin
coem21-Aug-12 0:14
coem21-Aug-12 0:14 
QuestionEPPLUS excel percent format Pin
Member 916988720-Aug-12 20:10
Member 916988720-Aug-12 20:10 
QuestionRe: EPPLUS excel percent format Pin
Richard MacCutchan20-Aug-12 21:29
mveRichard MacCutchan20-Aug-12 21:29 
AnswerRe: EPPLUS excel percent format Pin
Member 916988721-Aug-12 14:06
Member 916988721-Aug-12 14:06 
AnswerRe: EPPLUS excel percent format Pin
Jay Nardev21-Aug-12 20:44
Jay Nardev21-Aug-12 20:44 
QuestionWait until user finish typing Pin
biop.codeproject20-Aug-12 17:59
biop.codeproject20-Aug-12 17:59 
AnswerRe: Wait until user finish typing Pin
AmitGajjar20-Aug-12 18:39
professionalAmitGajjar20-Aug-12 18:39 
AnswerRe: Wait until user finish typing Pin
Paul Conrad20-Aug-12 19:32
professionalPaul Conrad20-Aug-12 19:32 
AnswerRe: Wait until user finish typing Pin
Shameel20-Aug-12 20:12
professionalShameel20-Aug-12 20:12 
AnswerRe: Wait until user finish typing Pin
jschell21-Aug-12 8:30
jschell21-Aug-12 8:30 
AnswerRe: Wait until user finish typing Pin
Pete O'Hanlon21-Aug-12 9:10
mvePete O'Hanlon21-Aug-12 9:10 
AnswerRe: Wait until user finish typing Pin
biop.codeproject22-Aug-12 23:27
biop.codeproject22-Aug-12 23:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.