The ADO.NET Entity Framework is a set of Object-Relational-Mapping (ORM) tools for the .NET Framework, since version 3.5 SP1.
6
votes
2answers
181 views
+100
Internationalization of content in Entity Framework
I keep coming across an i18n requirement where my data (not my UI) needs to be internationalized.
public class FooEntity
{
public long Id { get; set; }
public string Code { get; set; } // Some ...
3
votes
0answers
105 views
+50
Accessing VARCHAR as BINARY during read with Entity Framework and MySQL?
The base of the problem:
Pun intended.
The problem starts with a very old dBase database where the textual information is encoded directly into DOS Cyrillic (CP-866), and because that's not enough ...