User-1199946673 posted
You want to wirte stored procedures in a .cs file? Stored Procedures ar entities that reside in a database, not in a program files. Access does not have Stored Procedures, but something that looks like them. they are calles Savede Queries. The may difference
of an Access Saved Query to A Stored Procedure in for example SQL Server is that it can only contain 1 SQL statement. If you want to execute multiple related Saved Queries (or other queries) you should wrap them in a
transaction
Since you want to store them in a .cs file, you may want to consider using parameterized queries:
http://www.mikesdotnetting.com/Article.aspx?ArticleID=26