Author Topic: Has anyone ever developed NWN Sites using the Entity Framework?  (Read 854 times)

Baaleos

  • Administrator
  • Hero Member
  • *****
  • Posts: 1916
  • Karma: +0/-0
Has anyone ever developed NWN Sites using the Entity Framework?
« on: February 14, 2014, 01:19:56 pm »


                I've started learning web development using Visual Studio, and a new feature I've learned is something called the 'Entity Framework' model/system.

It allows you to bind to a database context, and then graphically create your database objects, and then have your entity model sent to the database and have the tables created automatically.

'Posted


I've done an example one here to show how you could actually easilly plan and create a game system using the model.

You can see I have a 'User' entity (logins)
Which maps to Servers - (one user can have multiple servers) : I was thinking about provisioning NWN Servers programatically - but forget about this for the time being.

Each user then has one or more GameAccounts (bioware login names)
Which can then have multiple characters associated with each game account.

Each character has 1 inventory
Which then has multiple instances of 'Item' entity.

I believe I can couple this with web services to have in-game data represented in an online web site.
Eg: Entire Inventory viewable, character information, even the ability to delete characters through web GUI etc, without the need for polling a heartbeat script etc.

Has anyone ever experimented with this?
               
               

               


                     Modifié par Baaleos, 14 février 2014 - 01:23 .
                     
                  


            

Baaleos

  • Administrator
  • Hero Member
  • *****
  • Posts: 1916
  • Karma: +0/-0
Has anyone ever developed NWN Sites using the Entity Framework?
« Reply #1 on: February 14, 2014, 03:37:05 pm »


               Just to show how this model first approach of development is good for gaming, here I have tried to replicate the nwn character structure.
'Posted
               
               

               
            

Legacy_DM_Vecna

  • Hero Member
  • *****
  • Posts: 501
  • Karma: +0/-0
Has anyone ever developed NWN Sites using the Entity Framework?
« Reply #2 on: May 23, 2014, 04:48:10 am »


               

I have used this sort of method in MySQL Workbench. I have enjoyed using it so far and it helps me keep everything organized.