Click here to Skip to main content
15,884,298 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
I have a master called Standard.
I have created the enterprise library architecture.
Now I have to insert, update and delete records in table from that master.
How can I write this coding using enterprise library?
Please help me..
Posted
Updated 8-Jan-13 22:38pm
v3
Comments
David_Wimbley 9-Jan-13 11:28am    
DELETE FROM <TABLE NAME>
INSERT INTO <TABLE NAME> (ColumnName) VALUES ('Im A Value')
UPDATE <TABLE NAME> SET ColumnName = 'Im An Update'

Can you be more specific/provide better input as to what specifically you are using? Are you using an ORM or using SQL? Its not very clear
PrachiMhatre 9-Jan-13 23:43pm    
I am using sql. i have write the procedure for that.Just I want how can I call that procedures from my application i.e from DAL layer logic when I am using enterprise library.

1 solution

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