Click here to Skip to main content
15,917,588 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
VB
privete doAction as new functionalityDataContext

It is a vb.net code


VB
dim getreminders = From reminders in doAction.uni_projects
               where reminders.dueby == DateTime.Today.ToLongDateString()
                               select reminders;


What I have tried:

i want to use it in c# what should i do
WHAT IS functionalityDataContext ???
Posted
Updated 4-Feb-19 18:57pm
v4
Comments
[no name] 3-Feb-19 22:05pm    
Looks like "application code". Entity framework.
Richard Deeming 4-Feb-19 12:03pm    
where reminders.dueby == DateTime.Today.ToLongDateString()

Looks like you're storing dates as strings. Don't do that! Not only does it waste space, it also makes it possible for invalid data to appear in the column.

 
Share this answer
 
Comments
Maciej Los 3-Feb-19 13:48pm    
5ed!
Move mouse cursor over functionalityDataContext, right click and choose: Goto definition or click on functionalityDataContext and hit [F12] key.
 
Share this answer
 
Comments
el_tot93 5-Feb-19 7:30am    
there is no result for it

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900