本文介绍了如何编写C#UI以从数据库中提取预先填充的数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是C#的新手。我有一个UI需要从数据库中检查可用时间并显示是否仍然可用。如果日期不可用,用户应该无法从用户界面中选择它。



我尝试了什么:



我创建了3个表。

- 预订表

-临时日期和时间表

- 主要日期和时间表

我创建了一个存储过程使用临时表预先填充预订的日期,时间和可用地点。我还创建了一个存储过程来提交预订和更新日期,时间,从Web表单提交记录时的可用位置



我需要一个合适的c#代码可以从我的数据库表和存储过程中读取数据并仅显示可用的日期,时间和点。



我们将非常感谢您的帮助。



谢谢,

Hetty

I am new to C#. I have a UI that needs to check available time from the database and display if still available. If the date is not available, a user should not be able to select it from the UI.

What I have tried:

I created 3 tables.
- reservation table
-Temporary date and time table
- Main date and time table
I created a stored procedure to pre-populate date, time and available spot for a reservation using a temporary table. I also created a stored procedure to submit a reservation and update date,time, available spot when a record is submitted from the web form

I need a proper c# code that can read the data from my database tables and stored procedure and display only available date, time and spots.

Your help will be greatly appreciated.

Thank you,
Hetty

推荐答案


这篇关于如何编写C#UI以从数据库中提取预先填充的数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 18:36