Are ORM frameworks without connectivity?

I have disabled DataSet from ADO.NET. I do not need or can use the ADO.NET connection, transaction, command, or anything else besides this DataSet and its contents. This is an optional limitation of the save library that I should use.

Are there any ORM frameworks that can execute all display elements without connecting to a database?

+3
source share
3 answers

I found a library that does just that:

http://automapper.codeplex.com/

Not defined for a DataSet, but can be easily used with them:

http://house9.blogspot.com/2010/11/automapper-datatable-to-list.html

+1
source
+1

DataSet.WriteXmlSchema() XSD , DataSet, ( Microsoft SDKs) xsd.exe/c yourschema.xsd destinationfolder

DataSet... , , , , .

, .

: : http://improve.dk/blog/2007/11/19/automatically-mapping-datatable-to-objects

+1

Source: https://habr.com/ru/post/1792507/


All Articles