From 4f247ab63e4d0a6844761a0d63b334522477a7e1 Mon Sep 17 00:00:00 2001 From: go-jet Date: Mon, 24 Jun 2019 18:22:55 +0200 Subject: [PATCH] Readme quick start example. --- .gitignore | 1 + README.md | 319 ++ cmd/jetgen/main.go | 10 +- examples/quick-start/diagram.png | Bin 0 -> 28575 bytes examples/quick-start/quick-start.go | 91 + tests/select_test.go | 89 + tests/testdata/quick-start-dest.json | 6067 +++++++++++++++++++++++++ tests/testdata/quick-start-dest2.json | 1769 +++++++ 8 files changed, 8344 insertions(+), 2 deletions(-) create mode 100644 examples/quick-start/diagram.png create mode 100644 examples/quick-start/quick-start.go create mode 100644 tests/testdata/quick-start-dest.json create mode 100644 tests/testdata/quick-start-dest2.json diff --git a/.gitignore b/.gitignore index fdbae22..d84d410 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,5 @@ .idea # Test files +gen .gentestdata \ No newline at end of file diff --git a/README.md b/README.md index 737b1e2..789a1f2 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,322 @@ [![CircleCI](https://circleci.com/gh/go-jet/jet/tree/develop.svg?style=svg&circle-token=97f255c6a4a3ab6590ea2e9195eb3ebf9f97b4a7)](https://circleci.com/gh/go-jet/jet/tree/develop) +Jet is sql builder for Postgresql(support for MySql and OracleSql will be added later). Jet enables writing typesafe SQL queries in Go, and ability to easily convert query result to desired arbitrary structure. + +#Features +* TODO + +# Getting Started + +##Prerequisites + +To install Jet package, you need to install Go and set your Go workspace first. + +[Go](https://golang.org/) **version 1.8+ is required** + +##Installation + +Use the bellow command to install jet +```sh +$ go get -u github.com/go-jet/jet +``` + +Install jetgen to GOPATH bin folder. This will allow generating jet files from the command line. + +```sh +go install github.com/go-jet/jet/cmd/jetgen +``` + +Make sure GOPATH bin folder is added to the PATH environment variable. + +##Quick Start +For this quick start example we will use sample dvd rental database. Full database dump can be found in [./tests/init/data/dvds.sql](./tests/init/data/dvds.sql) +Schema diagram of interest for example can be found [here](./examples/quick-start/diagram.png). + +###Generate sql builder and model files +To generate sql builder and data model go files we need to call jetgen, and provide it with postgres connection parameters and destination folder for generated go files. +Sample command used in tests: +```sh +jetgen -host=localhost -port=5432 -user=jet -password=jet -dbname=jetdb -schema dvds -path ./gen +``` +```sh +Connecting to postgres database: host=localhost port=5432 user=jet password=jet dbname=jetdb sslmode=disable +Retrieving schema information... + FOUND 15 table(s), 1 enum(s) +Cleaning up destination directory... +Generating table sql builder files... +Generating table model files... +Generating enum sql builder files... +Generating enum model files... +Done +``` +As jetgen command output suggest, jetgen will: +-connect to `dvds` database to retrieve information about the structure of database +-delete everything in destination folder `./gen`, +-and finally generate sql builder and model *.go files for all database tables and enums in destination folder `./tests/gentestdata`. + +###Now lets write some SQL queries in go + +First lets import jet and generated files from previous step +```go +import ( + . "github.com/go-jet/jet" // dot import so go code would resemble as much as native SQL + . "github.com/go-jet/jet/examples/quick-start/gen/jetdb/dvds/table" // dot import is not mandatory + + "github.com/go-jet/jet/examples/quick-start/gen/jetdb/dvds/model" +) +``` +Lets say we want to retrieve the list of all actors that acted in films longer than 180 minutes, film language is 'English' +and film category is not 'Action'. +```go +stmt := SELECT( + Actor.ActorID, Actor.FirstName, Actor.LastName, Actor.LastUpdate, // list of all actor columns (equivalent to Actor.AllColumns) + Film.AllColumns, // list of all film columns (equivalent to Film.FilmID, Film.Title, ...) + Language.AllColumns, + Category.AllColumns, + ).FROM( + Actor. + INNER_JOIN(FilmActor, Actor.ActorID.EQ(FilmActor.ActorID)). // INNER JOIN Actor with FilmActor on condition Actor.ActorID = FilmActor.ActorID + INNER_JOIN(Film, Film.FilmID.EQ(FilmActor.FilmID)). // then with Film, Language, FilmCategory and Category. + INNER_JOIN(Language, Language.LanguageID.EQ(Film.LanguageID)). + INNER_JOIN(FilmCategory, FilmCategory.FilmID.EQ(Film.FilmID)). + INNER_JOIN(Category, Category.CategoryID.EQ(FilmCategory.CategoryID)), + ).WHERE( + Language.Name.EQ(String("English")). // note every column has type. + AND(Category.Name.NOT_EQ(String("Action"))). // String column Language.Name and Category.Name can be compared only with string columns and expressions + AND(Film.Length.GT(Int(180))), // Film.Length is integer column and can be compared only with integer columns and expressions + ).ORDER_BY( + Actor.ActorID.ASC(), + Film.FilmID.ASC(), + ) +``` +To see sql formed with this statement: +```go +query, args, err := stmt.Sql() +``` +query - is parametrized query +args - are parameters for the query + +To see debug sql that can be copy pasted to sql editor and executed. +```go +query, err := stmt.DebugSql() +``` +query - is parametrized query where every parameter is replaced with appropriate string argument representation + +Well formed sql is just a first half the job. Now lets execute sql statement and store result in desired structure. +Let's say this is our desired structure: +```go +var dest []struct { + model.Actor + Films []struct { + model.Film + Language model.Language + Category []model.Category + } +} +``` +There is no limitation for how big or nested destination structure can be. + +Now to execute a statement on open database connection db. + +```go +err := stmt.Query(db, &dest) +handleError(err) +``` + +And thats it. `dest` now contains the list of all actors that acted in films longer than 180 minutes, film language is 'English' +and film category is not 'Action'. + +Lets print `dest` as a json to see: +```go +jsonText, _ := json.MarshalIndent(dest, "", "\t") +fmt.Println(string(jsonText)) +``` + +```json +[ + { + "ActorID": 1, + "FirstName": "Penelope", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 3, + "FirstName": "Ed", + "LastName": "Chase", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 996, + "Title": "Young Language", + "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'administr':12 'boat':8 'boy':17 'databas':11 'first':20 'languag':2 'man':21 'meet':15 'must':14 'space':22 'station':23 'unbeliev':4 'yarn':5 'young':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + ...(125 more items) +``` + +What if we also want to have list of films per category and actors per category, where films are longer than 180 minutes, film language is 'English' +and film category is not 'Action'. +In that case we can reuse above statement `stmt`, and just change our destination: + +```go +var dest2 []struct { + model.Category + + Film []model.Film + Actor []model.Actor +} + +err = stmt.Query(db, &dest2) +handleError(err) +``` +
+ `dest2` json: + +```json +[ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7" + }, + { + "FilmID": 50, + "Title": "Baked Cleopatra", + "Description": "A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'bake':1 'cleopatra':2 'drama':5 'forens':8 'husband':12 'monasteri':20 'must':14 'overcom':15 'psychologist':9 'stun':4 'waitress':17" + } + ], + "Actor": [ + { + "ActorID": 1, + "FirstName": "Penelope", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 20, + "FirstName": "Lucille", + "LastName": "Tracy", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 36, + "FirstName": "Burt", + "LastName": "Dukakis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 70, + "FirstName": "Michelle", + "LastName": "Mcconaughey", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 118, + "FirstName": "Cuba", + "LastName": "Allen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 187, + "FirstName": "Renee", + "LastName": "Ball", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 198, + "FirstName": "Mary", + "LastName": "Keitel", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + ... +``` +
+ +Complete code example can be found at [./examples/quick-start/quick-start.go](./examples/quick-start/quick-start.go) + +#Contributing + +#Versioning + +#Licence \ No newline at end of file diff --git a/cmd/jetgen/main.go b/cmd/jetgen/main.go index 535d3db..d156905 100644 --- a/cmd/jetgen/main.go +++ b/cmd/jetgen/main.go @@ -25,8 +25,8 @@ func init() { flag.StringVar(&port, "port", "", "Database port") flag.StringVar(&user, "user", "", "Database user") flag.StringVar(&password, "password", "", "The user’s password") - flag.StringVar(&sslmode, "sslmode", "disable", "Whether or not to use SSL") - flag.StringVar(¶ms, "params", "", "Additional connection string parameters.") + flag.StringVar(&sslmode, "sslmode", "disable", "Whether or not to use SSL(optional)") + flag.StringVar(¶ms, "params", "", "Additional connection string parameters(optional)") flag.StringVar(&dbName, "dbname", "", "name of the database") flag.StringVar(&schemaName, "schema", "public", "Database schema name.") @@ -38,6 +38,12 @@ func init() { func main() { + if host == "" || port == "" || user == "" || dbName == "" || schemaName == "" { + fmt.Println("jetgen: required flag missing") + flag.Usage() + os.Exit(-2) + } + genData := postgresgen.DBConnection{ Host: host, Port: port, diff --git a/examples/quick-start/diagram.png b/examples/quick-start/diagram.png new file mode 100644 index 0000000000000000000000000000000000000000..2ce2199d248f5b37116e30942916958862d1b020 GIT binary patch literal 28575 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 z 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 LtDnm{r-UW|@@Xr6 literal 0 HcmV?d00001 diff --git a/examples/quick-start/quick-start.go b/examples/quick-start/quick-start.go new file mode 100644 index 0000000..31d1fde --- /dev/null +++ b/examples/quick-start/quick-start.go @@ -0,0 +1,91 @@ +package main + +import ( + "database/sql" + "encoding/json" + "fmt" + + . "github.com/go-jet/jet" // dot import so go code would resemble as much as native SQL + . "github.com/go-jet/jet/examples/quick-start/gen/jetdb/dvds/table" // dot import is not mandatory + + "github.com/go-jet/jet/examples/quick-start/gen/jetdb/dvds/model" + "github.com/go-jet/jet/tests/dbconfig" +) + +func main() { + + db, err := sql.Open("postgres", dbconfig.ConnectString) + panicOnError(err) + defer db.Close() + + stmt := SELECT( + Actor.ActorID, Actor.FirstName, Actor.LastName, Actor.LastUpdate, // list of all actor columns (equivalent to Actor.AllColumns) + Film.AllColumns, // list of all film columns (equivalent to Film.FilmID, Film.Title, ...) + Language.AllColumns, + Category.AllColumns, + ).FROM( + Actor. + INNER_JOIN(FilmActor, Actor.ActorID.EQ(FilmActor.ActorID)). // INNER JOIN Actor with FilmActor on condition Actor.ActorID = FilmActor.ActorID + INNER_JOIN(Film, Film.FilmID.EQ(FilmActor.FilmID)). // then with Film, Language, FilmCategory and Category. + INNER_JOIN(Language, Language.LanguageID.EQ(Film.LanguageID)). + INNER_JOIN(FilmCategory, FilmCategory.FilmID.EQ(Film.FilmID)). + INNER_JOIN(Category, Category.CategoryID.EQ(FilmCategory.CategoryID)), + ).WHERE( + Language.Name.EQ(String("English")). // note every column has type. + AND(Category.Name.NOT_EQ(String("Action"))). // String column Language.Name and Category.Name can be compared only with string columns and expressions + AND(Film.Length.GT(Int(180))), // Film.Length is integer column and can be compared only with integer columns and expressions + ).ORDER_BY( + Actor.ActorID.ASC(), + Film.FilmID.ASC(), + ) + + query, args, err := stmt.Sql() + panicOnError(err) + + fmt.Println("Parameterized query: ") + fmt.Println(query) + fmt.Println("Arguments: ") + fmt.Println(args) + + debugSql, err := stmt.DebugSql() + panicOnError(err) + + fmt.Println("Debug sql: ") + fmt.Println(debugSql) + + var dest []struct { + model.Actor + Films []struct { + model.Film + Language model.Language + Category []model.Category + } + } + + err = stmt.Query(db, &dest) + panicOnError(err) + + fmt.Println("dest to json: ") + jsonText, _ := json.MarshalIndent(dest, "", "\t") + fmt.Println(string(jsonText)) + + var dest2 []struct { + model.Category + + Film []model.Film + Actor []model.Actor + } + + err = stmt.Query(db, &dest2) + panicOnError(err) + + fmt.Println("dest2 to json: ") + jsonText, _ = json.MarshalIndent(dest2, "", "\t") + fmt.Println(string(jsonText)) +} + +func panicOnError(err error) { + if err != nil { + panic(err) + } +} diff --git a/tests/select_test.go b/tests/select_test.go index ab47b88..0ed8a0c 100644 --- a/tests/select_test.go +++ b/tests/select_test.go @@ -1218,3 +1218,92 @@ FOR` assert.NilError(t, err) } } + +func TestForQuickStart(t *testing.T) { + + var expectedSql = ` +SELECT actor.actor_id AS "actor.actor_id", + actor.first_name AS "actor.first_name", + actor.last_name AS "actor.last_name", + actor.last_update AS "actor.last_update", + film.film_id AS "film.film_id", + film.title AS "film.title", + film.description AS "film.description", + film.release_year AS "film.release_year", + film.language_id AS "film.language_id", + film.rental_duration AS "film.rental_duration", + film.rental_rate AS "film.rental_rate", + film.length AS "film.length", + film.replacement_cost AS "film.replacement_cost", + film.rating AS "film.rating", + film.last_update AS "film.last_update", + film.special_features AS "film.special_features", + film.fulltext AS "film.fulltext", + language.language_id AS "language.language_id", + language.name AS "language.name", + language.last_update AS "language.last_update", + category.category_id AS "category.category_id", + category.name AS "category.name", + category.last_update AS "category.last_update" +FROM dvds.actor + INNER JOIN dvds.film_actor ON (actor.actor_id = film_actor.actor_id) + INNER JOIN dvds.film ON (film.film_id = film_actor.film_id) + INNER JOIN dvds.language ON (language.language_id = film.language_id) + INNER JOIN dvds.film_category ON (film_category.film_id = film.film_id) + INNER JOIN dvds.category ON (category.category_id = film_category.category_id) +WHERE ((language.name = 'English') AND (category.name != 'Action')) AND (film.length > 180) +ORDER BY actor.actor_id ASC, film.film_id ASC; +` + + stmt := SELECT( + Actor.ActorID, Actor.FirstName, Actor.LastName, Actor.LastUpdate, // list of all actor columns (equivalent to Actor.AllColumns) + Film.AllColumns, // list of all film columns (equivalent to Film.FilmID, Film.Title, ...) + Language.AllColumns, + Category.AllColumns, + ).FROM( + Actor. + INNER_JOIN(FilmActor, Actor.ActorID.EQ(FilmActor.ActorID)). // INNER JOIN Actor with FilmActor on condition Actor.ActorID = FilmActor.ActorID + INNER_JOIN(Film, Film.FilmID.EQ(FilmActor.FilmID)). // then with Film, Language, FilmCategory and Category. + INNER_JOIN(Language, Language.LanguageID.EQ(Film.LanguageID)). + INNER_JOIN(FilmCategory, FilmCategory.FilmID.EQ(Film.FilmID)). + INNER_JOIN(Category, Category.CategoryID.EQ(FilmCategory.CategoryID)), + ).WHERE( + Language.Name.EQ(String("English")). // note that every column has type. + AND(Category.Name.NOT_EQ(String("Action"))). // String column Language.Name and Category.Name can be compared only with string expression + AND(Film.Length.GT(Int(180))), // Film.Length is integer column and can be compared only with integer expression + ).ORDER_BY( + Actor.ActorID.ASC(), + Film.FilmID.ASC(), + ) + + assertStatementSql(t, stmt, expectedSql, "English", "Action", int64(180)) + + var dest []struct { + model.Actor + + Films []struct { + model.Film + + Language model.Language + + Category []model.Category + } + } + + err := stmt.Query(db, &dest) + assert.NilError(t, err) + + assertJson(t, "./testdata/quick-start-dest.json", dest) + + var dest2 []struct { + model.Category + + Film []model.Film + Actor []model.Actor + } + + err = stmt.Query(db, &dest2) + assert.NilError(t, err) + + assertJson(t, "./testdata/quick-start-dest2.json", dest2) +} diff --git a/tests/testdata/quick-start-dest.json b/tests/testdata/quick-start-dest.json new file mode 100644 index 0000000..7ce04d9 --- /dev/null +++ b/tests/testdata/quick-start-dest.json @@ -0,0 +1,6067 @@ +[ + { + "ActorID": 1, + "FirstName": "Penelope", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 3, + "FirstName": "Ed", + "LastName": "Chase", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 996, + "Title": "Young Language", + "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'administr':12 'boat':8 'boy':17 'databas':11 'first':20 'languag':2 'man':21 'meet':15 'must':14 'space':22 'station':23 'unbeliev':4 'yarn':5 'young':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 4, + "FirstName": "Jennifer", + "LastName": "Davis", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 721, + "Title": "Reds Pocus", + "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 23.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 5, + "FirstName": "Johnny", + "LastName": "Lollobrigida", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 340, + "Title": "Frontier Cabin", + "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 14.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", + "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 535, + "Title": "Love Suicides", + "Description": "A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 21.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'abandon':19 'brilliant':4 'dentist':16 'explor':11 'fun':20 'hous':21 'hunter':8 'love':1 'must':13 'panorama':5 'pursu':14 'suicid':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 841, + "Title": "Star Operation", + "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 9.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'car':12 'charact':5 'cow':18 'girl':9 'insight':4 'mad':17 'must':14 'oper':2 'pursu':15 'shark':21 'star':1 'studi':6 'tank':22", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 9, + "FirstName": "Joe", + "LastName": "Swank", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 510, + "Title": "Lawless Vision", + "Description": "A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 29.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'boy':8 'car':17 'insight':4 'lawless':1 'must':14 'outback':20 'outgun':15 'sumo':11 'vision':2 'wrestler':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 974, + "Title": "Wild Apollo", + "Description": "A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 24.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'apollo':2 'beauti':4 'conquer':15 'convent':22 'monkey':8 'must':14 'mysql':21 'shark':18 'stori':5 'sumo':11 'wild':1 'wrestler':12", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 11, + "FirstName": "Zero", + "LastName": "Cage", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 597, + "Title": "Moonwalker Fool", + "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 12.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 13, + "FirstName": "Uma", + "LastName": "Wood", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 597, + "Title": "Moonwalker Fool", + "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 12.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 15, + "FirstName": "Cuba", + "LastName": "Olivier", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 886, + "Title": "Theory Mermaid", + "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 9.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'compos':8 'fate':4 'first':19 'man':20 'mermaid':2 'monkey':11 'must':13 'space':21 'station':22 'theori':1 'vanquish':14 'woman':16 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 16, + "FirstName": "Fred", + "LastName": "Costner", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 886, + "Title": "Theory Mermaid", + "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 9.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'compos':8 'fate':4 'first':19 'man':20 'mermaid':2 'monkey':11 'must':13 'space':21 'station':22 'theori':1 'vanquish':14 'woman':16 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 19, + "FirstName": "Bob", + "LastName": "Fawcett", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 182, + "Title": "Control Anthem", + "Description": "A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'anthem':2 'battl':14 'cat':16 'control':1 'documentari':5 'fate':4 'monasteri':19 'must':13 'robot':8 'student':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 510, + "Title": "Lawless Vision", + "Description": "A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 29.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'boy':8 'car':17 'insight':4 'lawless':1 'must':14 'outback':20 'outgun':15 'sumo':11 'vision':2 'wrestler':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 20, + "FirstName": "Lucille", + "LastName": "Tracy", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 21, + "FirstName": "Kirsten", + "LastName": "Paltrow", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 426, + "Title": "Home Pity", + "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 15.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 22, + "FirstName": "Elvis", + "LastName": "Marx", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 349, + "Title": "Gangs Pride", + "Description": "A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'berlin':20 'charact':5 'confront':16 'frisbe':18 'gang':1 'must':15 'pride':2 'shark':13 'studi':6 'taut':4 'woman':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 23, + "FirstName": "Sandra", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 435, + "Title": "Hotel Happiness", + "Description": "A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 28.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'challeng':16 'chef':9 'happi':2 'hotel':1 'mad':18 'must':15 'outback':22 'pastri':8 'scientist':19 'shark':13 'thrill':4 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 820, + "Title": "Sons Interview", + "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 11.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'battl':16 'charact':5 'china':21 'cow':13 'explor':9 'hunter':18 'interview':2 'mad':12 'must':15 'son':1 'studi':6 'taut':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 26, + "FirstName": "Rip", + "LastName": "Crawford", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 340, + "Title": "Frontier Cabin", + "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 14.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", + "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 821, + "Title": "Sorority Queen", + "Description": "A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'boat':23 'compos':13 'display':7 'fast':5 'fast-pac':4 'fight':16 'forens':18 'jet':22 'must':15 'pace':6 'psychologist':19 'queen':2 'soror':1 'squirrel':10", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 27, + "FirstName": "Julia", + "LastName": "Mcqueen", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 996, + "Title": "Young Language", + "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'administr':12 'boat':8 'boy':17 'databas':11 'first':20 'languag':2 'man':21 'meet':15 'must':14 'space':22 'station':23 'unbeliev':4 'yarn':5 'young':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 28, + "FirstName": "Woody", + "LastName": "Hoffman", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 597, + "Title": "Moonwalker Fool", + "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 12.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 973, + "Title": "Wife Turn", + "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 27.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'awe':5 'awe-inspir':4 'confront':16 'epistl':7 'feminist':13 'inspir':6 'japan':21 'must':15 'pioneer':18 'teacher':10 'turn':2 'wife':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 33, + "FirstName": "Milla", + "LastName": "Peck", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 34, + "FirstName": "Audrey", + "LastName": "Olivier", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 182, + "Title": "Control Anthem", + "Description": "A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'anthem':2 'battl':14 'cat':16 'control':1 'documentari':5 'fate':4 'monasteri':19 'must':13 'robot':8 'student':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 35, + "FirstName": "Judy", + "LastName": "Dean", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 36, + "FirstName": "Burt", + "LastName": "Dukakis", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 426, + "Title": "Home Pity", + "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 15.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 37, + "FirstName": "Val", + "LastName": "Bolger", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 467, + "Title": "Intrigue Worst", + "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 38, + "FirstName": "Tom", + "LastName": "Mckellen", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 24, + "Title": "Analyze Hoosiers", + "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 19.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 40, + "FirstName": "Johnny", + "LastName": "Cage", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 128, + "Title": "Catch Amistad", + "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 41, + "FirstName": "Jodie", + "LastName": "Degeneres", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 721, + "Title": "Reds Pocus", + "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 23.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 42, + "FirstName": "Tom", + "LastName": "Miranda", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 24, + "Title": "Analyze Hoosiers", + "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 19.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 535, + "Title": "Love Suicides", + "Description": "A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 21.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'abandon':19 'brilliant':4 'dentist':16 'explor':11 'fun':20 'hous':21 'hunter':8 'love':1 'must':13 'panorama':5 'pursu':14 'suicid':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 43, + "FirstName": "Kirk", + "LastName": "Jovovich", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 180, + "Title": "Conspiracy Spirit", + "Description": "A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'abandon':21 'awe':5 'awe-inspir':4 'conquer':16 'conspiraci':1 'crocodil':18 'frisbe':13 'inspir':6 'mine':22 'must':15 'shaft':23 'spirit':2 'stori':7 'student':10", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 4, + "Name": "Classics", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 44, + "FirstName": "Nick", + "LastName": "Stallone", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 591, + "Title": "Monsoon Cause", + "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'astound':4 'boat':21 'car':11 'caus':2 'crocodil':8 'monsoon':1 'must':13 'outrac':14 'squirrel':16 'tale':5 'u':20 'u-boat':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 751, + "Title": "Runaway Tenenbaums", + "Description": "A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'abandon':19 'boat':8,16 'documentari':5 'fun':20 'hous':21 'man':11 'meet':14 'must':13 'runaway':1 'tenenbaum':2 'thought':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 45, + "FirstName": "Reese", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 198, + "Title": "Crystal Breaking", + "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'ancient':22 'break':2 'charact':7 'chef':20 'crystal':1 'explor':14 'face':17 'fast':5 'fast-pac':4 'feminist':11 'japan':23 'must':16 'pace':6 'pastri':19 'studi':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 467, + "Title": "Intrigue Worst", + "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 767, + "Title": "Scalawag Duck", + "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 13.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 46, + "FirstName": "Parker", + "LastName": "Goldberg", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 820, + "Title": "Sons Interview", + "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 11.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'battl':16 'charact':5 'china':21 'cow':13 'explor':9 'hunter':18 'interview':2 'mad':12 'must':15 'son':1 'studi':6 'taut':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 47, + "FirstName": "Julia", + "LastName": "Barrymore", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 973, + "Title": "Wife Turn", + "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 27.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'awe':5 'awe-inspir':4 'confront':16 'epistl':7 'feminist':13 'inspir':6 'japan':21 'must':15 'pioneer':18 'teacher':10 'turn':2 'wife':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 48, + "FirstName": "Frances", + "LastName": "Day-Lewis", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 349, + "Title": "Gangs Pride", + "Description": "A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'berlin':20 'charact':5 'confront':16 'frisbe':18 'gang':1 'must':15 'pride':2 'shark':13 'studi':6 'taut':4 'woman':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 50, + "FirstName": "Natalie", + "LastName": "Hopkins", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 591, + "Title": "Monsoon Cause", + "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'astound':4 'boat':21 'car':11 'caus':2 'crocodil':8 'monsoon':1 'must':13 'outrac':14 'squirrel':16 'tale':5 'u':20 'u-boat':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 51, + "FirstName": "Gary", + "LastName": "Phoenix", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 974, + "Title": "Wild Apollo", + "Description": "A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 24.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'apollo':2 'beauti':4 'conquer':15 'convent':22 'monkey':8 'must':14 'mysql':21 'shark':18 'stori':5 'sumo':11 'wild':1 'wrestler':12", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 54, + "FirstName": "Penelope", + "LastName": "Pinkett", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 510, + "Title": "Lawless Vision", + "Description": "A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 29.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'boy':8 'car':17 'insight':4 'lawless':1 'must':14 'outback':20 'outgun':15 'sumo':11 'vision':2 'wrestler':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 55, + "FirstName": "Fay", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 340, + "Title": "Frontier Cabin", + "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 14.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", + "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 57, + "FirstName": "Jude", + "LastName": "Cruise", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 340, + "Title": "Frontier Cabin", + "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 14.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", + "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 767, + "Title": "Scalawag Duck", + "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 13.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 58, + "FirstName": "Christian", + "LastName": "Akroyd", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 128, + "Title": "Catch Amistad", + "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 426, + "Title": "Home Pity", + "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 15.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 61, + "FirstName": "Christian", + "LastName": "Neeson", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 535, + "Title": "Love Suicides", + "Description": "A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 21.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'abandon':19 'brilliant':4 'dentist':16 'explor':11 'fun':20 'hous':21 'hunter':8 'love':1 'must':13 'panorama':5 'pursu':14 'suicid':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 767, + "Title": "Scalawag Duck", + "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 13.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 62, + "FirstName": "Jayne", + "LastName": "Neeson", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 198, + "Title": "Crystal Breaking", + "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'ancient':22 'break':2 'charact':7 'chef':20 'crystal':1 'explor':14 'face':17 'fast':5 'fast-pac':4 'feminist':11 'japan':23 'must':16 'pace':6 'pastri':19 'studi':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 406, + "Title": "Haunting Pianist", + "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 22.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'abandon':22 'administr':11 'amus':23 'compos':14 'databas':10 'defeat':17 'fast':5 'fast-pac':4 'haunt':1 'must':16 'pace':6 'park':24 'pianist':2 'squirrel':19 'stori':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 64, + "FirstName": "Ray", + "LastName": "Johansson", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 597, + "Title": "Moonwalker Fool", + "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 12.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 67, + "FirstName": "Jessica", + "LastName": "Bailey", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 24, + "Title": "Analyze Hoosiers", + "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 19.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 68, + "FirstName": "Rip", + "LastName": "Winslet", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 435, + "Title": "Hotel Happiness", + "Description": "A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 28.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'challeng':16 'chef':9 'happi':2 'hotel':1 'mad':18 'must':15 'outback':22 'pastri':8 'scientist':19 'shark':13 'thrill':4 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 70, + "FirstName": "Michelle", + "LastName": "Mcconaughey", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 50, + "Title": "Baked Cleopatra", + "Description": "A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'bake':1 'cleopatra':2 'drama':5 'forens':8 'husband':12 'monasteri':20 'must':14 'overcom':15 'psychologist':9 'stun':4 'waitress':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 72, + "FirstName": "Sean", + "LastName": "Williams", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 609, + "Title": "Muscle Bright", + "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 23.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 73, + "FirstName": "Gary", + "LastName": "Penn", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 467, + "Title": "Intrigue Worst", + "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 74, + "FirstName": "Milla", + "LastName": "Keitel", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 872, + "Title": "Sweet Brotherhood", + "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 76, + "FirstName": "Angelina", + "LastName": "Astaire", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 765, + "Title": "Saturn Name", + "Description": "A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 18.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'berlin':18 'boy':11 'butler':8 'epistl':5 'fate':4 'must':13 'name':2 'redeem':14 'saturn':1 'teacher':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 78, + "FirstName": "Groucho", + "LastName": "Sinatra", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 767, + "Title": "Scalawag Duck", + "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 13.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 79, + "FirstName": "Mae", + "LastName": "Hoffman", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 83, + "FirstName": "Ben", + "LastName": "Willis", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 340, + "Title": "Frontier Cabin", + "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 14.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", + "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 84, + "FirstName": "James", + "LastName": "Pitt", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 996, + "Title": "Young Language", + "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'administr':12 'boat':8 'boy':17 'databas':11 'first':20 'languag':2 'man':21 'meet':15 'must':14 'space':22 'station':23 'unbeliev':4 'yarn':5 'young':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 85, + "FirstName": "Minnie", + "LastName": "Zellweger", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 591, + "Title": "Monsoon Cause", + "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'astound':4 'boat':21 'car':11 'caus':2 'crocodil':8 'monsoon':1 'must':13 'outrac':14 'squirrel':16 'tale':5 'u':20 'u-boat':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 87, + "FirstName": "Spencer", + "LastName": "Peck", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 721, + "Title": "Reds Pocus", + "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 23.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 88, + "FirstName": "Kenneth", + "LastName": "Pesci", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 128, + "Title": "Catch Amistad", + "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 89, + "FirstName": "Charlize", + "LastName": "Dench", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 182, + "Title": "Control Anthem", + "Description": "A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'anthem':2 'battl':14 'cat':16 'control':1 'documentari':5 'fate':4 'monasteri':19 'must':13 'robot':8 'student':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 406, + "Title": "Haunting Pianist", + "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 22.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'abandon':22 'administr':11 'amus':23 'compos':14 'databas':10 'defeat':17 'fast':5 'fast-pac':4 'haunt':1 'must':16 'pace':6 'park':24 'pianist':2 'squirrel':19 'stori':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 90, + "FirstName": "Sean", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 406, + "Title": "Haunting Pianist", + "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 22.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'abandon':22 'administr':11 'amus':23 'compos':14 'databas':10 'defeat':17 'fast':5 'fast-pac':4 'haunt':1 'must':16 'pace':6 'park':24 'pianist':2 'squirrel':19 'stori':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 93, + "FirstName": "Ellen", + "LastName": "Presley", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 94, + "FirstName": "Kenneth", + "LastName": "Torn", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 95, + "FirstName": "Daryl", + "LastName": "Wahlberg", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 690, + "Title": "Pond Seattle", + "Description": "A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 25.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':18 'battl':14 'boat':11 'china':19 'drama':5 'feminist':16 'must':13 'pond':1 'seattl':2 'stun':4 'teacher':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 813, + "Title": "Smoochy Control", + "Description": "A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 18.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'ancient':19 'china':20 'control':2 'documentari':5 'face':14 'feminist':11 'husband':8 'mad':16 'must':13 'scientist':17 'smoochi':1 'thrill':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 98, + "FirstName": "Chris", + "LastName": "Bridges", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 721, + "Title": "Reds Pocus", + "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 23.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 765, + "Title": "Saturn Name", + "Description": "A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 18.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'berlin':18 'boy':11 'butler':8 'epistl':5 'fate':4 'must':13 'name':2 'redeem':14 'saturn':1 'teacher':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 100, + "FirstName": "Spencer", + "LastName": "Depp", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 872, + "Title": "Sweet Brotherhood", + "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 101, + "FirstName": "Susan", + "LastName": "Davis", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 774, + "Title": "Searchers Wait", + "Description": "A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 182, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':21 'car':10 'fast':5 'fast-pac':4 'japan':22 'kill':17 'mad':13 'must':16 'pace':6 'scientist':14 'searcher':1 'tale':7 'wait':2 'woman':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 841, + "Title": "Star Operation", + "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 9.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'car':12 'charact':5 'cow':18 'girl':9 'insight':4 'mad':17 'must':14 'oper':2 'pursu':15 'shark':21 'star':1 'studi':6 'tank':22", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 103, + "FirstName": "Matthew", + "LastName": "Leigh", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 609, + "Title": "Muscle Bright", + "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 23.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 104, + "FirstName": "Penelope", + "LastName": "Cronyn", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 198, + "Title": "Crystal Breaking", + "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'ancient':22 'break':2 'charact':7 'chef':20 'crystal':1 'explor':14 'face':17 'fast':5 'fast-pac':4 'feminist':11 'japan':23 'must':16 'pace':6 'pastri':19 'studi':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 107, + "FirstName": "Gina", + "LastName": "Degeneres", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 467, + "Title": "Intrigue Worst", + "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 774, + "Title": "Searchers Wait", + "Description": "A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 182, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':21 'car':10 'fast':5 'fast-pac':4 'japan':22 'kill':17 'mad':13 'must':16 'pace':6 'scientist':14 'searcher':1 'tale':7 'wait':2 'woman':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 973, + "Title": "Wife Turn", + "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 27.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'awe':5 'awe-inspir':4 'confront':16 'epistl':7 'feminist':13 'inspir':6 'japan':21 'must':15 'pioneer':18 'teacher':10 'turn':2 'wife':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 108, + "FirstName": "Warren", + "LastName": "Nolte", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 721, + "Title": "Reds Pocus", + "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 23.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 110, + "FirstName": "Susan", + "LastName": "Davis", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 435, + "Title": "Hotel Happiness", + "Description": "A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 28.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'challeng':16 'chef':9 'happi':2 'hotel':1 'mad':18 'must':15 'outback':22 'pastri':8 'scientist':19 'shark':13 'thrill':4 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 111, + "FirstName": "Cameron", + "LastName": "Zellweger", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 973, + "Title": "Wife Turn", + "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 27.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'awe':5 'awe-inspir':4 'confront':16 'epistl':7 'feminist':13 'inspir':6 'japan':21 'must':15 'pioneer':18 'teacher':10 'turn':2 'wife':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 112, + "FirstName": "Russell", + "LastName": "Bacall", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 113, + "FirstName": "Morgan", + "LastName": "Hopkins", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 114, + "FirstName": "Morgan", + "LastName": "Mcdormand", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 841, + "Title": "Star Operation", + "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 9.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'car':12 'charact':5 'cow':18 'girl':9 'insight':4 'mad':17 'must':14 'oper':2 'pursu':15 'shark':21 'star':1 'studi':6 'tank':22", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 116, + "FirstName": "Dan", + "LastName": "Streep", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 128, + "Title": "Catch Amistad", + "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 118, + "FirstName": "Cuba", + "LastName": "Allen", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 119, + "FirstName": "Warren", + "LastName": "Jackman", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 751, + "Title": "Runaway Tenenbaums", + "Description": "A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'abandon':19 'boat':8,16 'documentari':5 'fun':20 'hous':21 'man':11 'meet':14 'must':13 'runaway':1 'tenenbaum':2 'thought':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 121, + "FirstName": "Liza", + "LastName": "Bergman", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 198, + "Title": "Crystal Breaking", + "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'ancient':22 'break':2 'charact':7 'chef':20 'crystal':1 'explor':14 'face':17 'fast':5 'fast-pac':4 'feminist':11 'japan':23 'must':16 'pace':6 'pastri':19 'studi':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 127, + "FirstName": "Kevin", + "LastName": "Garland", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 128, + "FirstName": "Cate", + "LastName": "Mcqueen", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 774, + "Title": "Searchers Wait", + "Description": "A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 182, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':21 'car':10 'fast':5 'fast-pac':4 'japan':22 'kill':17 'mad':13 'must':16 'pace':6 'scientist':14 'searcher':1 'tale':7 'wait':2 'woman':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 129, + "FirstName": "Daryl", + "LastName": "Crawford", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 597, + "Title": "Moonwalker Fool", + "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 12.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 134, + "FirstName": "Gene", + "LastName": "Hopkins", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 690, + "Title": "Pond Seattle", + "Description": "A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 25.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':18 'battl':14 'boat':11 'china':19 'drama':5 'feminist':16 'must':13 'pond':1 'seattl':2 'stun':4 'teacher':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 135, + "FirstName": "Rita", + "LastName": "Reynolds", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 137, + "FirstName": "Morgan", + "LastName": "Williams", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 841, + "Title": "Star Operation", + "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 9.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'car':12 'charact':5 'cow':18 'girl':9 'insight':4 'mad':17 'must':14 'oper':2 'pursu':15 'shark':21 'star':1 'studi':6 'tank':22", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 139, + "FirstName": "Ewan", + "LastName": "Gooding", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 140, + "FirstName": "Whoopi", + "LastName": "Hurt", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 820, + "Title": "Sons Interview", + "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 11.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'battl':16 'charact':5 'china':21 'cow':13 'explor':9 'hunter':18 'interview':2 'mad':12 'must':15 'son':1 'studi':6 'taut':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 141, + "FirstName": "Cate", + "LastName": "Harris", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 467, + "Title": "Intrigue Worst", + "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 821, + "Title": "Sorority Queen", + "Description": "A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'boat':23 'compos':13 'display':7 'fast':5 'fast-pac':4 'fight':16 'forens':18 'jet':22 'must':15 'pace':6 'psychologist':19 'queen':2 'soror':1 'squirrel':10", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 143, + "FirstName": "River", + "LastName": "Dean", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 690, + "Title": "Pond Seattle", + "Description": "A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 25.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':18 'battl':14 'boat':11 'china':19 'drama':5 'feminist':16 'must':13 'pond':1 'seattl':2 'stun':4 'teacher':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 821, + "Title": "Sorority Queen", + "Description": "A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'boat':23 'compos':13 'display':7 'fast':5 'fast-pac':4 'fight':16 'forens':18 'jet':22 'must':15 'pace':6 'psychologist':19 'queen':2 'soror':1 'squirrel':10", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 872, + "Title": "Sweet Brotherhood", + "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 144, + "FirstName": "Angela", + "LastName": "Witherspoon", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 146, + "FirstName": "Albert", + "LastName": "Johansson", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 591, + "Title": "Monsoon Cause", + "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'astound':4 'boat':21 'car':11 'caus':2 'crocodil':8 'monsoon':1 'must':13 'outrac':14 'squirrel':16 'tale':5 'u':20 'u-boat':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 152, + "FirstName": "Ben", + "LastName": "Harris", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 821, + "Title": "Sorority Queen", + "Description": "A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'boat':23 'compos':13 'display':7 'fast':5 'fast-pac':4 'fight':16 'forens':18 'jet':22 'must':15 'pace':6 'psychologist':19 'queen':2 'soror':1 'squirrel':10", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 153, + "FirstName": "Minnie", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 180, + "Title": "Conspiracy Spirit", + "Description": "A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'abandon':21 'awe':5 'awe-inspir':4 'conquer':16 'conspiraci':1 'crocodil':18 'frisbe':13 'inspir':6 'mine':22 'must':15 'shaft':23 'spirit':2 'stori':7 'student':10", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 4, + "Name": "Classics", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 154, + "FirstName": "Meryl", + "LastName": "Gibson", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 467, + "Title": "Intrigue Worst", + "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 155, + "FirstName": "Ian", + "LastName": "Tandy", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 128, + "Title": "Catch Amistad", + "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 156, + "FirstName": "Fay", + "LastName": "Wood", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 198, + "Title": "Crystal Breaking", + "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'ancient':22 'break':2 'charact':7 'chef':20 'crystal':1 'explor':14 'face':17 'fast':5 'fast-pac':4 'feminist':11 'japan':23 'must':16 'pace':6 'pastri':19 'studi':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 349, + "Title": "Gangs Pride", + "Description": "A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'berlin':20 'charact':5 'confront':16 'frisbe':18 'gang':1 'must':15 'pride':2 'shark':13 'studi':6 'taut':4 'woman':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 467, + "Title": "Intrigue Worst", + "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 157, + "FirstName": "Greta", + "LastName": "Malden", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 24, + "Title": "Analyze Hoosiers", + "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 19.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 406, + "Title": "Haunting Pianist", + "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 22.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'abandon':22 'administr':11 'amus':23 'compos':14 'databas':10 'defeat':17 'fast':5 'fast-pac':4 'haunt':1 'must':16 'pace':6 'park':24 'pianist':2 'squirrel':19 'stori':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 535, + "Title": "Love Suicides", + "Description": "A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 21.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'abandon':19 'brilliant':4 'dentist':16 'explor':11 'fun':20 'hous':21 'hunter':8 'love':1 'must':13 'panorama':5 'pursu':14 'suicid':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 973, + "Title": "Wife Turn", + "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 27.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'awe':5 'awe-inspir':4 'confront':16 'epistl':7 'feminist':13 'inspir':6 'japan':21 'must':15 'pioneer':18 'teacher':10 'turn':2 'wife':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 158, + "FirstName": "Vivien", + "LastName": "Basinger", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 160, + "FirstName": "Chris", + "LastName": "Depp", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 767, + "Title": "Scalawag Duck", + "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 13.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 161, + "FirstName": "Harvey", + "LastName": "Hope", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 340, + "Title": "Frontier Cabin", + "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 14.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", + "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 163, + "FirstName": "Christopher", + "LastName": "West", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 180, + "Title": "Conspiracy Spirit", + "Description": "A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'abandon':21 'awe':5 'awe-inspir':4 'conquer':16 'conspiraci':1 'crocodil':18 'frisbe':13 'inspir':6 'mine':22 'must':15 'shaft':23 'spirit':2 'stori':7 'student':10", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 4, + "Name": "Classics", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 996, + "Title": "Young Language", + "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'administr':12 'boat':8 'boy':17 'databas':11 'first':20 'languag':2 'man':21 'meet':15 'must':14 'space':22 'station':23 'unbeliev':4 'yarn':5 'young':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 164, + "FirstName": "Humphrey", + "LastName": "Willis", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 820, + "Title": "Sons Interview", + "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 11.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'battl':16 'charact':5 'china':21 'cow':13 'explor':9 'hunter':18 'interview':2 'mad':12 'must':15 'son':1 'studi':6 'taut':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 165, + "FirstName": "Al", + "LastName": "Garland", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 166, + "FirstName": "Nick", + "LastName": "Degeneres", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 426, + "Title": "Home Pity", + "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 15.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 168, + "FirstName": "Will", + "LastName": "Wilson", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 841, + "Title": "Star Operation", + "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 9.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'car':12 'charact':5 'cow':18 'girl':9 'insight':4 'mad':17 'must':14 'oper':2 'pursu':15 'shark':21 'star':1 'studi':6 'tank':22", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 886, + "Title": "Theory Mermaid", + "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 9.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'compos':8 'fate':4 'first':19 'man':20 'mermaid':2 'monkey':11 'must':13 'space':21 'station':22 'theori':1 'vanquish':14 'woman':16 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 169, + "FirstName": "Kenneth", + "LastName": "Hoffman", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 349, + "Title": "Gangs Pride", + "Description": "A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'berlin':20 'charact':5 'confront':16 'frisbe':18 'gang':1 'must':15 'pride':2 'shark':13 'studi':6 'taut':4 'woman':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 170, + "FirstName": "Mena", + "LastName": "Hopper", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 180, + "Title": "Conspiracy Spirit", + "Description": "A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'abandon':21 'awe':5 'awe-inspir':4 'conquer':16 'conspiraci':1 'crocodil':18 'frisbe':13 'inspir':6 'mine':22 'must':15 'shaft':23 'spirit':2 'stori':7 'student':10", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 4, + "Name": "Classics", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 886, + "Title": "Theory Mermaid", + "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 9.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'compos':8 'fate':4 'first':19 'man':20 'mermaid':2 'monkey':11 'must':13 'space':21 'station':22 'theori':1 'vanquish':14 'woman':16 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 996, + "Title": "Young Language", + "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'administr':12 'boat':8 'boy':17 'databas':11 'first':20 'languag':2 'man':21 'meet':15 'must':14 'space':22 'station':23 'unbeliev':4 'yarn':5 'young':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 171, + "FirstName": "Olympia", + "LastName": "Pfeiffer", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 872, + "Title": "Sweet Brotherhood", + "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 172, + "FirstName": "Groucho", + "LastName": "Williams", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 609, + "Title": "Muscle Bright", + "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 23.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 175, + "FirstName": "William", + "LastName": "Hackman", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 591, + "Title": "Monsoon Cause", + "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'astound':4 'boat':21 'car':11 'caus':2 'crocodil':8 'monsoon':1 'must':13 'outrac':14 'squirrel':16 'tale':5 'u':20 'u-boat':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 176, + "FirstName": "Jon", + "LastName": "Chase", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 872, + "Title": "Sweet Brotherhood", + "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 177, + "FirstName": "Gene", + "LastName": "Mckellen", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 751, + "Title": "Runaway Tenenbaums", + "Description": "A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'abandon':19 'boat':8,16 'documentari':5 'fun':20 'hous':21 'man':11 'meet':14 'must':13 'runaway':1 'tenenbaum':2 'thought':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 178, + "FirstName": "Lisa", + "LastName": "Monroe", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 974, + "Title": "Wild Apollo", + "Description": "A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 24.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'apollo':2 'beauti':4 'conquer':15 'convent':22 'monkey':8 'must':14 'mysql':21 'shark':18 'stori':5 'sumo':11 'wild':1 'wrestler':12", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 179, + "FirstName": "Ed", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 24, + "Title": "Analyze Hoosiers", + "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 19.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 180, + "FirstName": "Jeff", + "LastName": "Silverstone", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 609, + "Title": "Muscle Bright", + "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 23.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 820, + "Title": "Sons Interview", + "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 11.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'battl':16 'charact':5 'china':21 'cow':13 'explor':9 'hunter':18 'interview':2 'mad':12 'must':15 'son':1 'studi':6 'taut':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 181, + "FirstName": "Matthew", + "LastName": "Carrey", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 609, + "Title": "Muscle Bright", + "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 23.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 184, + "FirstName": "Humphrey", + "LastName": "Garland", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 597, + "Title": "Moonwalker Fool", + "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 12.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 185, + "FirstName": "Michael", + "LastName": "Bolger", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 510, + "Title": "Lawless Vision", + "Description": "A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 29.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'boy':8 'car':17 'insight':4 'lawless':1 'must':14 'outback':20 'outgun':15 'sumo':11 'vision':2 'wrestler':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 973, + "Title": "Wife Turn", + "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 27.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'awe':5 'awe-inspir':4 'confront':16 'epistl':7 'feminist':13 'inspir':6 'japan':21 'must':15 'pioneer':18 'teacher':10 'turn':2 'wife':1", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 187, + "FirstName": "Renee", + "LastName": "Ball", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 435, + "Title": "Hotel Happiness", + "Description": "A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 28.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'challeng':16 'chef':9 'happi':2 'hotel':1 'mad':18 'must':15 'outback':22 'pastri':8 'scientist':19 'shark':13 'thrill':4 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 188, + "FirstName": "Rock", + "LastName": "Dukakis", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 774, + "Title": "Searchers Wait", + "Description": "A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 182, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':21 'car':10 'fast':5 'fast-pac':4 'japan':22 'kill':17 'mad':13 'must':16 'pace':6 'scientist':14 'searcher':1 'tale':7 'wait':2 'woman':19", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 189, + "FirstName": "Cuba", + "LastName": "Birch", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 820, + "Title": "Sons Interview", + "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 11.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'battl':16 'charact':5 'china':21 'cow':13 'explor':9 'hunter':18 'interview':2 'mad':12 'must':15 'son':1 'studi':6 'taut':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 190, + "FirstName": "Audrey", + "LastName": "Bailey", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 426, + "Title": "Home Pity", + "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 15.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 192, + "FirstName": "John", + "LastName": "Suvari", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 426, + "Title": "Home Pity", + "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 15.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 193, + "FirstName": "Burt", + "LastName": "Temple", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 194, + "FirstName": "Meryl", + "LastName": "Allen", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 872, + "Title": "Sweet Brotherhood", + "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 195, + "FirstName": "Jayne", + "LastName": "Silverstone", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 813, + "Title": "Smoochy Control", + "Description": "A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 18.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'ancient':19 'china':20 'control':2 'documentari':5 'face':14 'feminist':11 'husband':8 'mad':16 'must':13 'scientist':17 'smoochi':1 'thrill':4", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 196, + "FirstName": "Bela", + "LastName": "Walken", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 197, + "FirstName": "Reese", + "LastName": "West", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 974, + "Title": "Wild Apollo", + "Description": "A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 24.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'apollo':2 'beauti':4 'conquer':15 'convent':22 'monkey':8 'must':14 'mysql':21 'shark':18 'stori':5 'sumo':11 'wild':1 'wrestler':12", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 198, + "FirstName": "Mary", + "LastName": "Keitel", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 406, + "Title": "Haunting Pianist", + "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 22.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'abandon':22 'administr':11 'amus':23 'compos':14 'databas':10 'defeat':17 'fast':5 'fast-pac':4 'haunt':1 'must':16 'pace':6 'park':24 'pianist':2 'squirrel':19 'stori':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 597, + "Title": "Moonwalker Fool", + "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 12.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + }, + { + "FilmID": 886, + "Title": "Theory Mermaid", + "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 9.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'compos':8 'fate':4 'first':19 'man':20 'mermaid':2 'monkey':11 'must':13 'space':21 'station':22 'theori':1 'vanquish':14 'woman':16 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + }, + { + "ActorID": 199, + "FirstName": "Julia", + "LastName": "Fawcett", + "LastUpdate": "2013-05-26T14:47:57.62Z", + "Films": [ + { + "FilmID": 886, + "Title": "Theory Mermaid", + "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 9.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'compos':8 'fate':4 'first':19 'man':20 'mermaid':2 'monkey':11 'must':13 'space':21 'station':22 'theori':1 'vanquish':14 'woman':16 'yarn':5", + "Language": { + "LanguageID": 1, + "Name": "English ", + "LastUpdate": "2006-02-15T10:02:19Z" + }, + "Category": [ + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z" + } + ] + } + ] + } +] \ No newline at end of file diff --git a/tests/testdata/quick-start-dest2.json b/tests/testdata/quick-start-dest2.json new file mode 100644 index 0000000..4b601e7 --- /dev/null +++ b/tests/testdata/quick-start-dest2.json @@ -0,0 +1,1769 @@ +[ + { + "CategoryID": 8, + "Name": "Family", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 499, + "Title": "King Evolution", + "Description": "A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 24.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'action':5 'action-pack':4 'baloon':21 'boy':10 'chase':16 'evolut':2 'king':1 'lumberjack':13 'madman':18 'must':15 'pack':6 'tale':7" + }, + { + "FilmID": 50, + "Title": "Baked Cleopatra", + "Description": "A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'bake':1 'cleopatra':2 'drama':5 'forens':8 'husband':12 'monasteri':20 'must':14 'overcom':15 'psychologist':9 'stun':4 'waitress':17" + } + ], + "Actor": [ + { + "ActorID": 1, + "FirstName": "Penelope", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 20, + "FirstName": "Lucille", + "LastName": "Tracy", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 36, + "FirstName": "Burt", + "LastName": "Dukakis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 70, + "FirstName": "Michelle", + "LastName": "Mcconaughey", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 118, + "FirstName": "Cuba", + "LastName": "Allen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 187, + "FirstName": "Renee", + "LastName": "Ball", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 198, + "FirstName": "Mary", + "LastName": "Keitel", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 6, + "Name": "Documentary", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 996, + "Title": "Young Language", + "Description": "A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'administr':12 'boat':8 'boy':17 'databas':11 'first':20 'languag':2 'man':21 'meet':15 'must':14 'space':22 'station':23 'unbeliev':4 'yarn':5 'young':1" + }, + { + "FilmID": 973, + "Title": "Wife Turn", + "Description": "A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 27.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'awe':5 'awe-inspir':4 'confront':16 'epistl':7 'feminist':13 'inspir':6 'japan':21 'must':15 'pioneer':18 'teacher':10 'turn':2 'wife':1" + } + ], + "Actor": [ + { + "ActorID": 3, + "FirstName": "Ed", + "LastName": "Chase", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 27, + "FirstName": "Julia", + "LastName": "Mcqueen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 28, + "FirstName": "Woody", + "LastName": "Hoffman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 47, + "FirstName": "Julia", + "LastName": "Barrymore", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 84, + "FirstName": "James", + "LastName": "Pitt", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 107, + "FirstName": "Gina", + "LastName": "Degeneres", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 111, + "FirstName": "Cameron", + "LastName": "Zellweger", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 157, + "FirstName": "Greta", + "LastName": "Malden", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 163, + "FirstName": "Christopher", + "LastName": "West", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 170, + "FirstName": "Mena", + "LastName": "Hopper", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 185, + "FirstName": "Michael", + "LastName": "Bolger", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 12, + "Name": "Music", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 721, + "Title": "Reds Pocus", + "Description": "A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 23.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'georgia':20 'lacklustur':4 'monkey':17 'must':14 'pocus':2 'red':1 'redeem':15 'soviet':19 'squirrel':12 'sumo':8 'wrestler':9 'yarn':5" + }, + { + "FilmID": 426, + "Title": "Home Pity", + "Description": "A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 15.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'agent':12 'challeng':15 'convent':21 'home':1 'man':8 'must':14 'mysql':20 'panorama':5 'piti':2 'secret':11 'teacher':17 'touch':4" + }, + { + "FilmID": 767, + "Title": "Scalawag Duck", + "Description": "A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 13.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'car':8 'confront':14 'duck':2 'fate':4 'monasteri':19 'must':13 'reflect':5 'scalawag':1 'teacher':11 'waitress':16" + } + ], + "Actor": [ + { + "ActorID": 4, + "FirstName": "Jennifer", + "LastName": "Davis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 21, + "FirstName": "Kirsten", + "LastName": "Paltrow", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 36, + "FirstName": "Burt", + "LastName": "Dukakis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 41, + "FirstName": "Jodie", + "LastName": "Degeneres", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 45, + "FirstName": "Reese", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 57, + "FirstName": "Jude", + "LastName": "Cruise", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 58, + "FirstName": "Christian", + "LastName": "Akroyd", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 61, + "FirstName": "Christian", + "LastName": "Neeson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 78, + "FirstName": "Groucho", + "LastName": "Sinatra", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 87, + "FirstName": "Spencer", + "LastName": "Peck", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 98, + "FirstName": "Chris", + "LastName": "Bridges", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 108, + "FirstName": "Warren", + "LastName": "Nolte", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 160, + "FirstName": "Chris", + "LastName": "Depp", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 166, + "FirstName": "Nick", + "LastName": "Degeneres", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 190, + "FirstName": "Audrey", + "LastName": "Bailey", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 192, + "FirstName": "John", + "LastName": "Suvari", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 13, + "Name": "New", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 340, + "Title": "Frontier Cabin", + "Description": "A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 183, + "ReplacementCost": 14.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Deleted Scenes\"}", + "Fulltext": "'abandon':19 'battl':14 'cabin':2 'emot':4 'frontier':1 'fun':20 'hous':21 'madman':8 'must':13 'stori':5 'teacher':16 'waitress':11" + }, + { + "FilmID": 974, + "Title": "Wild Apollo", + "Description": "A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 24.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'apollo':2 'beauti':4 'conquer':15 'convent':22 'monkey':8 'must':14 'mysql':21 'shark':18 'stori':5 'sumo':11 'wild':1 'wrestler':12" + }, + { + "FilmID": 751, + "Title": "Runaway Tenenbaums", + "Description": "A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'abandon':19 'boat':8,16 'documentari':5 'fun':20 'hous':21 'man':11 'meet':14 'must':13 'runaway':1 'tenenbaum':2 'thought':4" + } + ], + "Actor": [ + { + "ActorID": 5, + "FirstName": "Johnny", + "LastName": "Lollobrigida", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 9, + "FirstName": "Joe", + "LastName": "Swank", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 26, + "FirstName": "Rip", + "LastName": "Crawford", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 44, + "FirstName": "Nick", + "LastName": "Stallone", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 51, + "FirstName": "Gary", + "LastName": "Phoenix", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 55, + "FirstName": "Fay", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 57, + "FirstName": "Jude", + "LastName": "Cruise", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 83, + "FirstName": "Ben", + "LastName": "Willis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 119, + "FirstName": "Warren", + "LastName": "Jackman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 161, + "FirstName": "Harvey", + "LastName": "Hope", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 177, + "FirstName": "Gene", + "LastName": "Mckellen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 178, + "FirstName": "Lisa", + "LastName": "Monroe", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 197, + "FirstName": "Reese", + "LastName": "West", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 11, + "Name": "Horror", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 535, + "Title": "Love Suicides", + "Description": "A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 21.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'abandon':19 'brilliant':4 'dentist':16 'explor':11 'fun':20 'hous':21 'hunter':8 'love':1 'must':13 'panorama':5 'pursu':14 'suicid':2" + }, + { + "FilmID": 24, + "Title": "Analyze Hoosiers", + "Description": "A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 19.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'analyz':1 'chef':12 'desert':21 'display':5 'explor':8 'feminist':17 'hoosier':2 'must':14 'overcom':15 'pastri':11 'sahara':20 'thought':4" + } + ], + "Actor": [ + { + "ActorID": 5, + "FirstName": "Johnny", + "LastName": "Lollobrigida", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 38, + "FirstName": "Tom", + "LastName": "Mckellen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 42, + "FirstName": "Tom", + "LastName": "Miranda", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 61, + "FirstName": "Christian", + "LastName": "Neeson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 67, + "FirstName": "Jessica", + "LastName": "Bailey", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 157, + "FirstName": "Greta", + "LastName": "Malden", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 179, + "FirstName": "Ed", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 14, + "Name": "Sci-Fi", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 817, + "Title": "Soldiers Evolution", + "Description": "A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'confront':15 'evolut':2 'first':20 'lacklustur':4 'man':21 'must':14 'panorama':5 'pioneer':12 'shark':9 'soldier':1 'space':22 'station':23 'student':17" + } + ], + "Actor": [ + { + "ActorID": 5, + "FirstName": "Johnny", + "LastName": "Lollobrigida", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 13, + "FirstName": "Uma", + "LastName": "Wood", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 15, + "FirstName": "Cuba", + "LastName": "Olivier", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 35, + "FirstName": "Judy", + "LastName": "Dean", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 90, + "FirstName": "Sean", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 112, + "FirstName": "Russell", + "LastName": "Bacall", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 153, + "FirstName": "Minnie", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 179, + "FirstName": "Ed", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 198, + "FirstName": "Mary", + "LastName": "Keitel", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 15, + "Name": "Sports", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 841, + "Title": "Star Operation", + "Description": "A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 9.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'car':12 'charact':5 'cow':18 'girl':9 'insight':4 'mad':17 'must':14 'oper':2 'pursu':15 'shark':21 'star':1 'studi':6 'tank':22" + }, + { + "FilmID": 719, + "Title": "Records Zorro", + "Description": "A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 11.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'amaz':4 'build':15 'compos':12 'drama':5 'husband':17 'mad':8 'must':14 'outback':20 'record':1 'scientist':9 'zorro':2" + }, + { + "FilmID": 813, + "Title": "Smoochy Control", + "Description": "A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 18.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'ancient':19 'china':20 'control':2 'documentari':5 'face':14 'feminist':11 'husband':8 'mad':16 'must':13 'scientist':17 'smoochi':1 'thrill':4" + } + ], + "Actor": [ + { + "ActorID": 5, + "FirstName": "Johnny", + "LastName": "Lollobrigida", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 62, + "FirstName": "Jayne", + "LastName": "Neeson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 83, + "FirstName": "Ben", + "LastName": "Willis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 95, + "FirstName": "Daryl", + "LastName": "Wahlberg", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 101, + "FirstName": "Susan", + "LastName": "Davis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 113, + "FirstName": "Morgan", + "LastName": "Hopkins", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 114, + "FirstName": "Morgan", + "LastName": "Mcdormand", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 135, + "FirstName": "Rita", + "LastName": "Reynolds", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 137, + "FirstName": "Morgan", + "LastName": "Williams", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 139, + "FirstName": "Ewan", + "LastName": "Gooding", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 163, + "FirstName": "Christopher", + "LastName": "West", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 168, + "FirstName": "Will", + "LastName": "Wilson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 175, + "FirstName": "William", + "LastName": "Hackman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 194, + "FirstName": "Meryl", + "LastName": "Allen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 195, + "FirstName": "Jayne", + "LastName": "Silverstone", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 2, + "Name": "Animation", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 510, + "Title": "Lawless Vision", + "Description": "A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 29.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'boy':8 'car':17 'insight':4 'lawless':1 'must':14 'outback':20 'outgun':15 'sumo':11 'vision':2 'wrestler':12 'yarn':5" + }, + { + "FilmID": 886, + "Title": "Theory Mermaid", + "Description": "A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 9.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'compos':8 'fate':4 'first':19 'man':20 'mermaid':2 'monkey':11 'must':13 'space':21 'station':22 'theori':1 'vanquish':14 'woman':16 'yarn':5" + }, + { + "FilmID": 349, + "Title": "Gangs Pride", + "Description": "A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'berlin':20 'charact':5 'confront':16 'frisbe':18 'gang':1 'must':15 'pride':2 'shark':13 'studi':6 'taut':4 'woman':9" + }, + { + "FilmID": 820, + "Title": "Sons Interview", + "Description": "A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 11.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':20 'battl':16 'charact':5 'china':21 'cow':13 'explor':9 'hunter':18 'interview':2 'mad':12 'must':15 'son':1 'studi':6 'taut':4" + }, + { + "FilmID": 690, + "Title": "Pond Seattle", + "Description": "A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 25.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'ancient':18 'battl':14 'boat':11 'china':19 'drama':5 'feminist':16 'must':13 'pond':1 'seattl':2 'stun':4 'teacher':8" + } + ], + "Actor": [ + { + "ActorID": 9, + "FirstName": "Joe", + "LastName": "Swank", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 15, + "FirstName": "Cuba", + "LastName": "Olivier", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 16, + "FirstName": "Fred", + "LastName": "Costner", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 19, + "FirstName": "Bob", + "LastName": "Fawcett", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 22, + "FirstName": "Elvis", + "LastName": "Marx", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 23, + "FirstName": "Sandra", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 46, + "FirstName": "Parker", + "LastName": "Goldberg", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 48, + "FirstName": "Frances", + "LastName": "Day-Lewis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 54, + "FirstName": "Penelope", + "LastName": "Pinkett", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 95, + "FirstName": "Daryl", + "LastName": "Wahlberg", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 134, + "FirstName": "Gene", + "LastName": "Hopkins", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 140, + "FirstName": "Whoopi", + "LastName": "Hurt", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 143, + "FirstName": "River", + "LastName": "Dean", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 156, + "FirstName": "Fay", + "LastName": "Wood", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 164, + "FirstName": "Humphrey", + "LastName": "Willis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 168, + "FirstName": "Will", + "LastName": "Wilson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 169, + "FirstName": "Kenneth", + "LastName": "Hoffman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 170, + "FirstName": "Mena", + "LastName": "Hopper", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 180, + "FirstName": "Jeff", + "LastName": "Silverstone", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 185, + "FirstName": "Michael", + "LastName": "Bolger", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 189, + "FirstName": "Cuba", + "LastName": "Birch", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 198, + "FirstName": "Mary", + "LastName": "Keitel", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 199, + "FirstName": "Julia", + "LastName": "Fawcett", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 10, + "Name": "Games", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 597, + "Title": "Moonwalker Fool", + "Description": "A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 4.99, + "Length": 184, + "ReplacementCost": 12.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'compos':16 'drama':5 'epic':4 'feminist':8 'fool':2 'moonwalk':1 'must':13 'new':18 'orlean':19 'pioneer':11 'sink':14" + }, + { + "FilmID": 591, + "Title": "Monsoon Cause", + "Description": "A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 20.99, + "Rating": "PG", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries,\"Behind the Scenes\"}", + "Fulltext": "'astound':4 'boat':21 'car':11 'caus':2 'crocodil':8 'monsoon':1 'must':13 'outrac':14 'squirrel':16 'tale':5 'u':20 'u-boat':19" + }, + { + "FilmID": 406, + "Title": "Haunting Pianist", + "Description": "A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 22.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'abandon':22 'administr':11 'amus':23 'compos':14 'databas':10 'defeat':17 'fast':5 'fast-pac':4 'haunt':1 'must':16 'pace':6 'park':24 'pianist':2 'squirrel':19 'stori':7" + }, + { + "FilmID": 141, + "Title": "Chicago North", + "Description": "A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 11.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'battl':15 'california':19 'chicago':1 'cow':9 'fate':4 'mad':8 'must':14 'north':2 'student':17 'waitress':12 'yarn':5" + } + ], + "Actor": [ + { + "ActorID": 11, + "FirstName": "Zero", + "LastName": "Cage", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 13, + "FirstName": "Uma", + "LastName": "Wood", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 28, + "FirstName": "Woody", + "LastName": "Hoffman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 44, + "FirstName": "Nick", + "LastName": "Stallone", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 50, + "FirstName": "Natalie", + "LastName": "Hopkins", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 62, + "FirstName": "Jayne", + "LastName": "Neeson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 64, + "FirstName": "Ray", + "LastName": "Johansson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 79, + "FirstName": "Mae", + "LastName": "Hoffman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 85, + "FirstName": "Minnie", + "LastName": "Zellweger", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 89, + "FirstName": "Charlize", + "LastName": "Dench", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 90, + "FirstName": "Sean", + "LastName": "Guiness", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 118, + "FirstName": "Cuba", + "LastName": "Allen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 121, + "FirstName": "Liza", + "LastName": "Bergman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 127, + "FirstName": "Kevin", + "LastName": "Garland", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 129, + "FirstName": "Daryl", + "LastName": "Crawford", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 143, + "FirstName": "River", + "LastName": "Dean", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 146, + "FirstName": "Albert", + "LastName": "Johansson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 154, + "FirstName": "Meryl", + "LastName": "Gibson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 157, + "FirstName": "Greta", + "LastName": "Malden", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 175, + "FirstName": "William", + "LastName": "Hackman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 184, + "FirstName": "Humphrey", + "LastName": "Garland", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 193, + "FirstName": "Burt", + "LastName": "Temple", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 195, + "FirstName": "Jayne", + "LastName": "Silverstone", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 198, + "FirstName": "Mary", + "LastName": "Keitel", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 5, + "Name": "Comedy", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 182, + "Title": "Control Anthem", + "Description": "A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 185, + "ReplacementCost": 9.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Commentaries}", + "Fulltext": "'anthem':2 'battl':14 'cat':16 'control':1 'documentari':5 'fate':4 'monasteri':19 'must':13 'robot':8 'student':11" + }, + { + "FilmID": 765, + "Title": "Saturn Name", + "Description": "A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 4.99, + "Length": 182, + "ReplacementCost": 18.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'berlin':18 'boy':11 'butler':8 'epistl':5 'fate':4 'must':13 'name':2 'redeem':14 'saturn':1 'teacher':16" + }, + { + "FilmID": 774, + "Title": "Searchers Wait", + "Description": "A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 182, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'ancient':21 'car':10 'fast':5 'fast-pac':4 'japan':22 'kill':17 'mad':13 'must':16 'pace':6 'scientist':14 'searcher':1 'tale':7 'wait':2 'woman':19" + } + ], + "Actor": [ + { + "ActorID": 19, + "FirstName": "Bob", + "LastName": "Fawcett", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 34, + "FirstName": "Audrey", + "LastName": "Olivier", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 76, + "FirstName": "Angelina", + "LastName": "Astaire", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 89, + "FirstName": "Charlize", + "LastName": "Dench", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 98, + "FirstName": "Chris", + "LastName": "Bridges", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 101, + "FirstName": "Susan", + "LastName": "Davis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 107, + "FirstName": "Gina", + "LastName": "Degeneres", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 128, + "FirstName": "Cate", + "LastName": "Mcqueen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 188, + "FirstName": "Rock", + "LastName": "Dukakis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 7, + "Name": "Drama", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 473, + "Title": "Jacket Frisco", + "Description": "A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 5, + "RentalRate": 2.99, + "Length": 181, + "ReplacementCost": 16.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\",\"Behind the Scenes\"}", + "Fulltext": "'baloon':20 'chef':17 'conquer':14 'frisco':2 'husband':11 'insight':4 'jacket':1 'must':13 'pastri':16 'reflect':5 'woman':8" + } + ], + "Actor": [ + { + "ActorID": 19, + "FirstName": "Bob", + "LastName": "Fawcett", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 33, + "FirstName": "Milla", + "LastName": "Peck", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 79, + "FirstName": "Mae", + "LastName": "Hoffman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 89, + "FirstName": "Charlize", + "LastName": "Dench", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 93, + "FirstName": "Ellen", + "LastName": "Presley", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 94, + "FirstName": "Kenneth", + "LastName": "Torn", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 144, + "FirstName": "Angela", + "LastName": "Witherspoon", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 158, + "FirstName": "Vivien", + "LastName": "Basinger", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 165, + "FirstName": "Al", + "LastName": "Garland", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 196, + "FirstName": "Bela", + "LastName": "Walken", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 9, + "Name": "Foreign", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 435, + "Title": "Hotel Happiness", + "Description": "A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 4.99, + "Length": 181, + "ReplacementCost": 28.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Behind the Scenes\"}", + "Fulltext": "'challeng':16 'chef':9 'happi':2 'hotel':1 'mad':18 'must':15 'outback':22 'pastri':8 'scientist':19 'shark':13 'thrill':4 'yarn':5" + }, + { + "FilmID": 821, + "Title": "Sorority Queen", + "Description": "A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 184, + "ReplacementCost": 17.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Deleted Scenes\"}", + "Fulltext": "'boat':23 'compos':13 'display':7 'fast':5 'fast-pac':4 'fight':16 'forens':18 'jet':22 'must':15 'pace':6 'psychologist':19 'queen':2 'soror':1 'squirrel':10" + }, + { + "FilmID": 467, + "Title": "Intrigue Worst", + "Description": "A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 0.99, + "Length": 181, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'boat':22 'charact':5 'explor':9 'fanci':4 'intrigu':1 'jet':21 'mad':12 'must':15 'scientist':13 'squirrel':18 'studi':6 'vanquish':16 'worst':2" + }, + { + "FilmID": 128, + "Title": "Catch Amistad", + "Description": "A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 0.99, + "Length": 183, + "ReplacementCost": 10.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,\"Behind the Scenes\"}", + "Fulltext": "'amistad':2 'bore':4 'catch':1 'discov':14 'feminist':11 'lumberjack':8 'must':13 'nigeria':18 'reflect':5 'woman':16" + }, + { + "FilmID": 198, + "Title": "Crystal Breaking", + "Description": "A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 6, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 22.99, + "Rating": "NC-17", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'ancient':22 'break':2 'charact':7 'chef':20 'crystal':1 'explor':14 'face':17 'fast':5 'fast-pac':4 'feminist':11 'japan':23 'must':16 'pace':6 'pastri':19 'studi':8" + } + ], + "Actor": [ + { + "ActorID": 23, + "FirstName": "Sandra", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 26, + "FirstName": "Rip", + "LastName": "Crawford", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 37, + "FirstName": "Val", + "LastName": "Bolger", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 40, + "FirstName": "Johnny", + "LastName": "Cage", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 45, + "FirstName": "Reese", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 58, + "FirstName": "Christian", + "LastName": "Akroyd", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 62, + "FirstName": "Jayne", + "LastName": "Neeson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 68, + "FirstName": "Rip", + "LastName": "Winslet", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 73, + "FirstName": "Gary", + "LastName": "Penn", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 88, + "FirstName": "Kenneth", + "LastName": "Pesci", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 104, + "FirstName": "Penelope", + "LastName": "Cronyn", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 107, + "FirstName": "Gina", + "LastName": "Degeneres", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 110, + "FirstName": "Susan", + "LastName": "Davis", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 116, + "FirstName": "Dan", + "LastName": "Streep", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 121, + "FirstName": "Liza", + "LastName": "Bergman", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 141, + "FirstName": "Cate", + "LastName": "Harris", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 143, + "FirstName": "River", + "LastName": "Dean", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 152, + "FirstName": "Ben", + "LastName": "Harris", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 154, + "FirstName": "Meryl", + "LastName": "Gibson", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 155, + "FirstName": "Ian", + "LastName": "Tandy", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 156, + "FirstName": "Fay", + "LastName": "Wood", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 187, + "FirstName": "Renee", + "LastName": "Ball", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 4, + "Name": "Classics", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 180, + "Title": "Conspiracy Spirit", + "Description": "A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 4, + "RentalRate": 2.99, + "Length": 184, + "ReplacementCost": 27.99, + "Rating": "PG-13", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{Trailers,Commentaries}", + "Fulltext": "'abandon':21 'awe':5 'awe-inspir':4 'conquer':16 'conspiraci':1 'crocodil':18 'frisbe':13 'inspir':6 'mine':22 'must':15 'shaft':23 'spirit':2 'stori':7 'student':10" + } + ], + "Actor": [ + { + "ActorID": 43, + "FirstName": "Kirk", + "LastName": "Jovovich", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 153, + "FirstName": "Minnie", + "LastName": "Kilmer", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 163, + "FirstName": "Christopher", + "LastName": "West", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 170, + "FirstName": "Mena", + "LastName": "Hopper", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + }, + { + "CategoryID": 16, + "Name": "Travel", + "LastUpdate": "2006-02-15T09:46:27Z", + "Film": [ + { + "FilmID": 609, + "Title": "Muscle Bright", + "Description": "A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 7, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 23.99, + "Rating": "G", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'ancient':19 'bright':2 'husband':12 'india':20 'madman':17 'muscl':1 'must':14 'panorama':5 'redeem':15 'stun':4 'sumo':8 'wrestler':9" + }, + { + "FilmID": 872, + "Title": "Sweet Brotherhood", + "Description": "A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon", + "ReleaseYear": 2006, + "LanguageID": 1, + "RentalDuration": 3, + "RentalRate": 2.99, + "Length": 185, + "ReplacementCost": 27.99, + "Rating": "R", + "LastUpdate": "2013-05-26T14:50:58.951Z", + "SpecialFeatures": "{\"Deleted Scenes\"}", + "Fulltext": "'baloon':21 'brotherhood':2 'chase':15 'epistl':5 'forens':17 'hunter':12 'must':14 'psychologist':18 'sumo':8 'sweet':1 'unbeliev':4 'wrestler':9" + } + ], + "Actor": [ + { + "ActorID": 72, + "FirstName": "Sean", + "LastName": "Williams", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 74, + "FirstName": "Milla", + "LastName": "Keitel", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 100, + "FirstName": "Spencer", + "LastName": "Depp", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 103, + "FirstName": "Matthew", + "LastName": "Leigh", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 143, + "FirstName": "River", + "LastName": "Dean", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 171, + "FirstName": "Olympia", + "LastName": "Pfeiffer", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 172, + "FirstName": "Groucho", + "LastName": "Williams", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 176, + "FirstName": "Jon", + "LastName": "Chase", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 180, + "FirstName": "Jeff", + "LastName": "Silverstone", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 181, + "FirstName": "Matthew", + "LastName": "Carrey", + "LastUpdate": "2013-05-26T14:47:57.62Z" + }, + { + "ActorID": 194, + "FirstName": "Meryl", + "LastName": "Allen", + "LastUpdate": "2013-05-26T14:47:57.62Z" + } + ] + } +] \ No newline at end of file