user310291
user310291

Reputation: 38190

How to make crud operation in asp.net mvc aspx without database nor entity framework

All tutorials I can find is with database or entity framework. I just want a simple class as model with field creation and update from the view and using .aspx template.

Can somebody give me as simplest example as possible or point me an article on the web I've bee googling all day long without finding any.

Upvotes: 0

Views: 1793

Answers (1)

Moho
Moho

Reputation: 16498

Simply use an EF Code First tutorial and remove the calls to DbContext - without DbContext, the entities are simply POCOs. Replace those calls with however you plan to persist/read your data.

Upvotes: 2

Related Questions