Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7818181
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T06:29:40+00:00 2026-06-02T06:29:40+00:00

if i have the following to access an sql database for a date to

  • 0

if i have the following to access an sql database for a date to compare it to a string that a user enters:

public IQueryable<Audit> FindAllAuditsByNameDate(String name, String date)
        {
            return from audit in db.Audits
                   where audit.EventTime.ToString().Contains(date) && audit.User.UserName.Contains(name)
                   orderby audit.User.UserName
                   select audit;
        }

it fails is the user enters the “/” character in a date. how do i work around this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T06:29:43+00:00Added an answer on June 2, 2026 at 6:29 am

    Try DateTime.Parse. It’s able to understand a lot of the common formats for entering DateTimes.

    DateTime dateStart = DateTime.Parse(date);
    DateTime dateEnd = dateStart.AddDays(1);
    
    return from audit in db.Audits
           where audit.EventTime >= dateStart &&
                 audit.EventTime < dateEnd &&
                 audit.User.UserName.Contains(name)
           orderby audit.User.UserName
           select audit;
    

    If DateTime.Parse doesn’t parse the format you want, you can always use DateTime.ParseExact and provide your own format strings.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working with C# .Net and ms-access database. I have the following SQL query:
I have the following problem in a Database using Access 2007 as front end
I have the following code, that should remove the access of users from a
I have the following enum. public enum DATABASE_TYPES { JDataStore, Access, SQLServer, H2, PostGresSQL,
I have another SQL/access 2007 question that seems really basic but I'm not sure
Have a bunch of WCF REST services hosted on Azure that access a SQL
I have an application that needs to connect to a SQL database, and execute
I have SQL Server Compact 3.5 database that contains account information. But everytime I
We have the following simple Stored Procedure that runs as an overnight SQL server
I have complete readonly access to a SQL Server Database. If I try to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.